Questions tagged as 'internet-explorer'

3
answers

Navigate horizontal scroll by pressing tab

I'm using the datatables plugin. I built a table where the first four columns are fixed and the others (which will be generated "dynamically") have input for quantity typing. My intention is that when the user presses tab to g...
asked by 16.06.2015 / 16:29
5
answers

Internet Explorer, should I still worry about it?

Today when developing a new site , should I still be concerned about compatibility with older versions of Internet Explorer , or are we out of this phase already? I ask this because today I received the approval of a user of a site that we...
asked by 13.02.2014 / 19:28
1
answer

Hide default component [arrow] form select in IE

I have a problem here in IE. I'm styling the select component of the form, hiding the arrow that comes by default from the browser to load an image in place of the form. In FF and Chrome it was quiet, but IE is displaying the default arrow...
asked by 25.02.2015 / 16:10
1
answer

HTML5 video without context menu

How do I disable context menu of the right mouse button in videos, so that the video menu does not appear? $('#nome').contextmenu( function() { return false; }); The code above, but does not work in internet explorer, the video is left...
asked by 12.04.2014 / 23:28
1
answer

VBA Macro fetch information on site

I need to search for information on a real estate site and bring it to excel. I made the macro below: Sub zap() Set ie = CreateObject("InternetExplorer.Application") With ie .Navigate "http://www.zap.com.br/imoveis/fipe-zap/" .Visible = True...
asked by 06.03.2014 / 18:29
3
answers

Script is not working in IE

I'm using this script in Chrome and it works fine. But IE 8 or 9 does not work. I put a debugger and an alert to debug, but it does not even enter the function. $(document).on("mousedown", '#CentroCusto_new option', function (event) { aler...
asked by 12.03.2014 / 21:41
2
answers

How to remove bug from antialising lines generated in Firefox and IE?

I'm creating a border on my site, with background . It works perfectly in Chrome, but in Firefox and IE unwanted lines appear. I have already noticed that they are present in the CSS3 property of transform: scaleX (-1); in the Div effect I need...
asked by 06.03.2014 / 22:58
1
answer

How to prevent caching in Ajax requests in IE 6?

I have the following code to update a DIV on a page: var req; // FUNÇÃO BUSCA ROMANEIOS PARA EXIBIR NA TELA DE MENU. function buscarRomaneio() { // Verificando Browser if(window.XMLHttpRequest) { req = new XMLHttpRequest(); } else if(wind...
asked by 23.08.2016 / 21:43
3
answers

Scrollbar not hidden in Internet Explorer

I'm creating a site where I use multiple elements div of the page size, and links in the top menu that directs to these div , doing a page scrolling effect with each click. My problem is that in Internet Explorer, the scroll bar...
asked by 07.01.2014 / 03:41
1
answer

Multiple select rendering different for each browser

I have the following code: <select multiple="multiple" id="carros" size="1" name="carros"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</op...
asked by 20.02.2014 / 21:28