internet-explorer-8

Javascript error in IE8: Not implemented

杀马特。学长 韩版系。学妹 提交于 2019-12-21 08:24:10
问题 This one really puzzles me, as the code looks completely harmless. IE8 halts script execution with a message: Not implemented. map.js line:66 char:5 Here is a snip from the code: 63 if(data.map[x] !== undefined && data.map[x][y] !== undefined) { 64 65 left = (x - data.dim.x_min)*32 + 30; 66 top = (data.dim.y_max - y)*32 + 30; 67 68 /* do stuff */ XX } debug info: x:263 data.dim.x_min:263 y:172 data.dim.y_max:174 Data is object returned from JQuery Ajax call. This works in Firefox 3.0 and 3.5,

AngularJS IE 8 Support

独自空忆成欢 提交于 2019-12-21 05:05:00
问题 I'm building a one-page website, using AngularJS, ui-router and jquery, and I need it to support ie 8 browsers. I followed the instructions from the AngularJS documentation (link), and I also read this and followed its instructions. In a nutshell: I added this code in the header: <html xmlns:ng="http://angularjs.org" id="ng-app" ng-app="myApp"> and also: <!--[if lt IE 9]> <script type="text/javascript" src="/app/js/3rdparty/html5shiv.js"></script> <script type="text/javascript" src="/app/js

CSS Transform not working in IE 8

廉价感情. 提交于 2019-12-21 05:00:53
问题 I am attempting to rotate or transform a div using the CSS Transform property. Here is my transform CSS Code: -webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); -ms-transform: rotate(270deg); -o-transform: rotate(270deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0); transform: rotate(270deg); The above code works great in all but IE 8. I need to find a way to support IE 8. How can I create a fallback for IE8? Note: I am using jQuery (1.8.2), HTML 5 Doctype

Facebook Login/Like Fail on IE8

北城以北 提交于 2019-12-21 04:48:40
问题 I've recently implemented Facebook Login button and a Facebook "Like" button using XFBML. You can see the site on http://colnect.com Everything works well with FireFox, Chrome, Opera & Safari. However, IE doesn't show neither "login" or "like" buttons and no error message is available as well. Any ideas? 回答1: Seems I'll be the kind of person to answer himself hoping it'll help someone. For Internet Explorer to recognize Facebook you should add xmlns:fb="http://www.facebook.com/2008/fbml" to

Prevent double form submission in jQuery

我与影子孤独终老i 提交于 2019-12-21 04:42:23
问题 I have a form that users use to input information about a posting. When complete they click 'Save' to update. However, in some rare cases (10 in 15,000 records) the user has double clicked the save button and caused a double form submission duplicating items for the posting. I tried using this to prevent it: $('input[type=submit]').click(function(){ $('input[type=submit]').attr('disabled',true); //return true; }); But the problem with this, it works perfectly in Safari / Firefox etc, but does

JQuery UI modal dialog uses 100% CPU

青春壹個敷衍的年華 提交于 2019-12-21 04:42:12
问题 When I have a modal JQuery dialog open in IE8, my CPU usage goes to 100% (no, actually 50, but that's 100% of one core). If I break developer tools, it seems that it's a lot of resize events firing (I don't do any volontary resizing). Has someone else encountered this issue and knows how to fix it? 回答1: The solution is to add this to your CSS file: .ui-widget-overlay { position: fixed; } reference 回答2: I've seen things like this happen when something is filling a container at 100% width and

jquery noConflict not working in IE8 only

笑着哭i 提交于 2019-12-21 04:30:49
问题 I have a website using the prootype framework and I am looking to use a jquery plugin. Everything works just not in IE8. It works in ie7 which amazes me. Any idea what maybe wrong? IE8 gives me object doesnt support this property or method where line jQuery.noConflict(); is <script src="/my/docs/jquery.js" type="text/javascript"></script> <script src="/my/docs/jquery.simplyscroll.js" type="text/javascript"> </script> <script type="text/javascript"> jQuery.noConflict(); function OpenUp(sURL){

IE8 and VS2008: How do I disable script debugging?

偶尔善良 提交于 2019-12-21 04:10:45
问题 IE8 is out and apparently it automatically turns on script (JavaScript) debugging whenever you launch your project in debugging mode. Does anyone know how to turn this ofF? I scoured the IE8/VS2008 settings but didn't see anything. Edit: You can't just go into Internet Options and disable debugging: http://blogs.msdn.com/webdevtools/archive/2008/03/05/jscript-debugging-made-easy-with-ie8.aspx This is so you can leave debugging off for regular web browsing, but have it automatically come on

Is it possible to change the automatic configuration script address in the LAN settings of Internet Explorer 8 with the help of a script?

耗尽温柔 提交于 2019-12-21 02:00:48
问题 I use 2 different automatic configuration script addresses in the LAN settings of Internet Explorer 8. During the course of my work, I need to switch between them very often. Every time I have to do it manually. Is there a way I can automate it through a script or something, so that I can switch between them whenever I want? 回答1: You can use the following commands in a batch file (.bat file) Use of batch files relieves you from making so many UI clicks to perform a simple task of assigning a

Is it possible to change the automatic configuration script address in the LAN settings of Internet Explorer 8 with the help of a script?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-21 02:00:15
问题 I use 2 different automatic configuration script addresses in the LAN settings of Internet Explorer 8. During the course of my work, I need to switch between them very often. Every time I have to do it manually. Is there a way I can automate it through a script or something, so that I can switch between them whenever I want? 回答1: You can use the following commands in a batch file (.bat file) Use of batch files relieves you from making so many UI clicks to perform a simple task of assigning a