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"...
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?
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...
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...
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...
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...
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: "...
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...
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...