Questions tagged as 'internet-explorer'

1
answer

What is the "behavior" attribute in CSS?

I have seen in some CSS codes made to work in the beautiful browser Internet Explorer the following attribute: img { behavior: url(ie_png.htc); } What is the purpose of this behavior ? Does it only work for Internet Explorer?...
asked by 10.12.2015 / 16:29
3
answers

Adapt JS code to IE8 and IE9

How can I make this code work in IE8 and IE9, because it works only in 10 $("#input_file").change( function(event) { var tmppath = URL.createObjectURL(event.target.files[0]); $("img").attr('src',tmppath); }); Method that does not...
asked by 13.01.2015 / 18:36
1
answer

JqPlot error in IE 7

I'm using the JqPlot plugin to generate a bar and column chart. After running the tests in Mozilla and Chrome, which worked perfectly, I ran the test on IE7 and IE8 and got the following error:    window.g_vmlcanvasmanage...
asked by 12.02.2014 / 18:08
0
answers

What possible values in document.readyState?

I noticed in the MDN documentation, both when in the W3 documentation (do not confuse with w3schools ) loading document still loading interactive document has completed loading and "document" has already been processed, but im...
asked by 29.10.2017 / 16:16
2
answers

How can I make the blur effect in IE?

I'm using this css code to make the blur effect a div : .blur { -webkit-filter: blur(25px); -moz-filter: blur(25px); -o-filter: blur(25px); -ms-filter: blur(25px); filter: blur(25px); } <div c...
asked by 01.08.2016 / 15:13
2
answers

-ms-flexbox and flexbox do not work in Internet Explorer

I'm having trouble identifying what I should do to fix this error - I recently used CSS Progress Wizard , it works perfectly in google chrome and other browsers: ButwhenIlookatinternetexplorer9,ithassomeerrors: Here is the code for CSS...
asked by 17.06.2015 / 17:49
2
answers

div stops being updated in IE11

In a project I'm developing, I need to update some fields on the page every 50ms (this is adjustable). The problem is that when I test in IE, the fields are no longer updated from time to time, with no explanation whatsoever. Usually it w...
asked by 17.02.2014 / 00:07
1
answer

Poor behavior when stretching image

I have the following html code: <figure> <div id="test"> <a href="#"> <img class="wideStretch" src="caminhodaimagem/img1.jpg" alt="Img 1" /> </a> </div> </figure>...
asked by 05.04.2014 / 16:55
1
answer

CSS Incompatibility with jquery blockUI in IE 8

I'm using jquery 1.11.0 in> along with the plugin jquery-blockui < in> 2.66.0 and when blocking the screen, div gets white background in IE8 and earlier. Here are the images: The call to blockUI: $.blockUI({ message: "...
asked by 18.02.2014 / 20:21
1
answer

IE does not show CSS effect gradient and font-shadow correctly

Can anyone help me? I can not get IE to accept the gradient effect, load the font and use the font-shadow below. In fact, IE is not loading anything but text with a generic font (no background). Chrome is perfect. Follow a fiddle: link...
asked by 16.04.2014 / 16:27