Most voted "internet-explorer-8" questions
Windows Internet Explorer 8 (abbreviated IE8) is the eighth version of the Internet Explorer browser created and manufactured by Microsoft. It is the successor to Internet Explorer 7. Use this tag on questions where support for this browser is particularly necessary (and not any browser and/or any version of IE).
Learn more…21 questions
Sort by count of
-
11
votes3
answers546
viewsSimulate placeholder in IE8
I was reading the documentation here and it seems that the attribute placeholder does not work in IE8. Would have some way to simulate the placeholder that you use? Example of HTML not working in…
-
8
votes2
answers130
viewsDoubt about @media
made the front-end of a site, in which its main layout was at 1920px and I am adapting to other screens, using: @media (min-width: 0px) and (max-width: 1920px) {} I saw that in IE8 is not working,…
-
7
votes1
answer98
viewsUse ":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;…
-
6
votes3
answers719
viewsAdapt JS Code to IE8 and IE9
How can I make this code below work on IE8 and IE9, because it only works on 10 $("#input_file").change( function(event) { var tmppath = URL.createObjectURL(event.target.files[0]);…
javascript internet-explorer internet-explorer-8asked 9 years, 10 months ago Silvio Andorinha 8,394 -
5
votes5
answers213
viewsCSS Child selectors on IE8?
Today I needed to fix to 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…
-
5
votes1
answer4182
viewsGet File Size in Bytes in Java Script
I am validating the size of the attached file on my page before uploading using the following code: var tamanhoArquivo = parseInt(document.getElementById("documento").files[0].size);…
javascript jquery jsp file-upload internet-explorer-8asked 9 years, 12 months ago Eduardo Nobre 356 -
4
votes2
answers609
viewsRetrieve elements by class in IE8 with pure JS
I have it : <input type="hidden" value="<c:out value='${destino }' />" class="destino" /> <input type="hidden" value="<c:out value='${destino }' />" class="destino" />…
-
4
votes1
answer277
viewsCSS incompatibility with jquery blockUI in IE 8
I’m using jquery 1.11.0 along with the plugin jquery-blockui 2.66.0 and when locking the screen, the div white background on IE 8 and earlier. Follow the images: The call to blockUI: $.blockUI({…
jquery css internet-explorer internet-explorer-8 jquery-blockuiasked 10 years, 9 months ago Guilherme Vianna 491 -
4
votes1
answer460
viewsProblem with Jquery effect . Blur() in IE8
I have a method of building dynamic elements using jQuery v1.2 with Ajax, which creates a list of items containing the structure of <ul> and <li>, however, when I apply .blur() and Ajax…
-
3
votes1
answer179
viewsHow to list available events in an element in IE8?
I’m making a Shim/polyfill to work with CustomEvents for IE8, but I’m having a problem detecting when the event is not standard. In IE8 each element can have a different list of available events,…
-
3
votes1
answer1331
viewsjQuery Ajax does not work on IE8 and IE9
I am using Internet Explorer 9 for testing and ajax requests do not work (in all other browsers they work). I have that code: $.ajax({ type: "GET", url:…
javascript jquery ajax internet-explorer-8 internet-explorer-9asked 10 years, 7 months ago Victor Mag 168 -
3
votes1
answer272
viewsJquery Cycle - A centralized slide and the other two partially appearing
I am in need of a slider that would have at least 3 slides, where the middle one would appear completely with the resolution and the other two sides would appear partially. I’m using the solution…
-
2
votes0
answers47
viewsProblem with rich:suggestionbox component in IE
We have a problem with the rich:suggestionbox component in the IE 8 browser. When the suggestion list appears and the user clicks inside the suggestion, but in no item in the list, the suggestion is…
-
2
votes1
answer344
viewsInternet Explorer 8 does not load CSS
I am working in a virtual store changing its layout, but the CSS that I have changed is the skin/frontend/meutema/default/css/style.css. So far so good, Chrome loads my normal changes, Firefox too,…
-
1
votes2
answers1136
viewsCarousel style with 3 slides
I’m trying to make a kind of slider where the middle slide appears as main and the sides will cut according to the resolution, but I was having problems in the IE and incredible that it seems the…
-
1
votes1
answer61
viewsTextarea Unicode problem in IE8 and MVC2
I’m having trouble in a textarea field. I have a textarea field the client type in this field inserts ç àèìáí, in the perfect textarea, in js also this ok, but when the controller rescues the…
-
1
votes1
answer205
viewsHide/Show function does not work in IE 8
I have a Javascript that makes the function of grouping items in a table. For example I click on it and it expands bringing more values of this item. The problem is that in IE 8 does not work. In…
-
0
votes1
answer90
viewsIe8 Enable Activex Iframe Scripts and Controls crashes
I am testing a site created by me Internet Explorer 8. The Site Layout works when enabled Activex Scripts or controls... But when I do this activation the Iframes I have on the site stop working. I…
-
0
votes1
answer97
viewsHide DIV only in IE8
I have a small doubt, how do I hide a div (.laser) only in IE8? Preferably would like to use only CSS or also JS
-
0
votes0
answers51
viewshow to do jquery 1.9.1 functions with IE8?
I have this function that works in Chrome, firefox, IE11 but needed to use it in IE8 more does not perform the function someone knows a way to circumvent it? $(function(){ //GERAIS var errmsg =…
-
0
votes0
answers77
viewsUpload file with ajax ie8
I have a Multipart-fordata form where I need to send the file for processing in C#. The code below works on IE11 and Chrome. var formData= new FormData(); var planilha =…