Questions tagged as 'internet-explorer-8'

3
answers

Simulate placeholder in IE8

I was reading the documentation here and it seems that the placeholder attribute does not work in IE8. Would you have any way to simulate the placeholder you use? HTML example that does not work in IE8: <input type="text"...
asked by 16.12.2014 / 18:30
2
answers

Doubt about @media

I made the front end of a site where your main layout was 1920px and I'm adapting to other screens, using: @media (min-width: 0px) and (max-width: 1920px) {} I saw that IE8 is not working, is there any alternative to work around this?     
asked by 21.02.2014 / 20:39
1
answer

Use ": last-child: after" in Internet Explorer 8

I have a graph where some elements are generated via CSS, namely the trace below the quantity scale: CSS Used: #results .chart-scale li{ font-size:16px; line-height:18px; padding-top:38px; font-family:'latolight', sans...
asked by 20.01.2014 / 13:02
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
5
answers

CSS Child selectors in IE8?

Today I needed to make a fix for IE8 in which I used the following selector to align 3 boxes horizontally. #page-content .section-servicos .box-servico:nth-child(3n+2){ margin-right:0px; } In IE8 this code does not work, so I decided to do...
asked by 17.02.2014 / 17:50
1
answer

Get File Size in Bytes in Java Script

I'm validating the attached file size on my page before upload using the following code: var tamanhoArquivo = parseInt(document.getElementById("documento").files[0].size); if(tamanhoArquivo > 2097152){ //MAX_FILE_SIZE = 2097152 Byte...
asked by 26.11.2014 / 15:09
2
answers

Retrieve elements by class in IE8 with pure JS

I have this: <input type="hidden" value="<c:out value='${destino }' />" class="destino" /> <input type="hidden" value="<c:out value='${destino }' />" class="destino" /> <input type="hidden" value="<c:out value='${...
asked by 18.02.2014 / 15:23
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

Problem with the .blur () effect of JQuery in IE8

I have a method of constructing dynamic elements using jQuery v1.2 with Ajax, which creates a list of items containing the <ul> and <li> structure, however, when I apply .blur() and Ajax returns many values, a sc...
asked by 20.02.2014 / 23:51
1
answer

jQuery Ajax does not work in IE8 and IE9

I'm using Internet Explorer 9 for testing and ajax requests do not work (in all other browsers they work). I have this code: $.ajax({ type: "GET", url: "http://cep.correiocontrol.com.br/60441145.json", dataType: "json", succ...
asked by 16.04.2014 / 23:07