internet-explorer-8

Jquery animations freeze in ie8

一世执手 提交于 2019-12-13 05:39:48
问题 I have some JQueryUI animation coupled with some Jquery code that addes some html to the page. The html is generated based on data from a JQuery Ajax call. I thought the freezing of my animations might be from the Ajax call, but from what the question below is saying i'm thinking not: Why does my spinner GIF stop while jQuery ajax call is running? I think the issue I am having may be of the same origin, however the question above provides a REASON for the behavior, not a SOLUTION. Does anyone

Directive not working in IE8

天大地大妈咪最大 提交于 2019-12-13 05:36:57
问题 I have a directive called barsMax and it is not working in IE8, even if I already placed: <!--[if lte IE 8]> <script> document.createElement('bars-max'); </script> <![endif]--> What am I missing? 回答1: Code you are using also has a pseudo tag bars-current . Adding document.createElement('bars-current'); to your polyfill worked for me. DISCLAMER : Am Using IE10 in IE8 standards mode but error thrown in console if don't create elements first and jsfiddle itself falls apart without it in IE8 DEMO

Why won't jQuery accordion section activate in IE 8?

寵の児 提交于 2019-12-13 05:29:33
问题 I am using a multi-part form within the jQuery UI accordion. When a user clicks on "next," the next section that has not already been submitted opens. It is not working properly in IE 8 - the next section does not open. Anyone have any thoughts on what I can do here to ensure compatibility with IE 8? EDITED UDPATE TO QUESTION: Using IE Developer Tools, I found that the code is breaking at "next=i." The error states "Object doesn't support this property or method." Any thoughts as to what I'm

Html detect IE8 and lower or any other browser

大憨熊 提交于 2019-12-13 05:24:58
问题 With HTML comments, I am trying to do something like the following - <!-- [if lte IE 8] --> //if browser is IE8 or less display the following <div>IE8</div> <!-- [endif] --> <!-- [if ANY OTHER BROSWER] --> //any other browser do this <div>Any other browser</div> <!-- [endif] --> I can't seem to find a combination that works? How can this be done? 回答1: Reference <!--[if IE 8]> According to the conditional comment this is IE 8<br /> <![endif]--> <!--[if lt IE 9]> According to the conditional

Why is page not rendering properly (missing content) on IE8 via IIS6?

五迷三道 提交于 2019-12-13 05:17:54
问题 Having a very annoying problem where custom user controls do not appear at all in my ASP.NET project when using IE8 and IIS6. It works on all other browsers except IE8 when using ISS6. When using exact same project on IE8 with ISS7, it works on all browsers including IE8. Has anyone got any suggestions? 回答1: Is the content encapsulated in a certain tag, or included in a unique way (other language, etc.)? I'm guessing there is a mime type or other configuration change between the two server

jQuery add and remove classes not working IE8

岁酱吖の 提交于 2019-12-13 04:38:49
问题 I am not the greatest at jQuery so forgive me if this is a simple question. I have created a nav menu active state function Click here for the demo It works fine in Chrome, Firefox, Safari, however I notice in IE8 the class active is not appearing when I click on the links. Is there something incorrect in my jQuery? $(document).ready(function () { $('.proBtn').click(function () { $('li').removeClass('active'); $('li a').removeClass('blue'); $(this).parent().addClass('active'); $(this).parent(

Jvector Map not working when browser Mode and document mode different in IE8

三世轮回 提交于 2019-12-13 04:35:36
问题 I am currently Running Jvector Map its working well.I have checked Internet Explorer its working well. i am using IE8. finally test my task i have set Browser Mode 8 and document Mode 7. then Run the code its showing error like this? Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E) Timestamp: Tue, 26 May 2015 13:47:52 UTC Message: Expected

IE8 knockout error - Unable to process binding

雨燕双飞 提交于 2019-12-13 04:13:00
问题 I have a viewmodel like this, var sectorViewModel = function() { this.currentValue = ko.observable(); this.previousValue = ko.observable(); .... this.maxValue = ko.computed(function() { return Math.max(this.currentValue(), this.previousValue(), ...); }, this); } ko.applyBinding(sectorVM, document.getElementById("divSector"); And this is the html snippet where I am doing the data-bind, <div id="divSector"> ... <div class="bar" data-bind="style: {width: (currentValue()*100)/maxValue() + '%'}"><

HTML/CSS/SVG: SVG background image in IE7/8

风格不统一 提交于 2019-12-13 04:01:44
问题 I have made an svg image that I am using as a background image. I does not work in IE8 and below (as expected), and I thought I could use something use like: http://twostepmedia.co.uk/svgeezy/ or http://code.google.com/p/svgweb/. However, none of these support SVG as a background-image/background, only IMG and Object etc. Code: background:url('img/bck_hero.svg'); How can I get an SVG as the background in IE8/7 or have a fallback image? Is there a javascript library that could do this? Thanks

IE & Ajax / XPath

六眼飞鱼酱① 提交于 2019-12-13 03:55:51
问题 I've read countless threads and tried implementing many different suggestions, but haven't had any luck. first: function ajaxRequest() { try { var request = new XMLHttpRequest(); } catch(e1) { try { var request = new ActiveXObject("Msxml2.HTMLHTTP"); } catch(e2) { try { var request = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e3) { var request = false; } } } return request; } It looks like IE is successfully using XMLHttpRequest. As far as I can tell, it's loading the XML fine, but Xpath