internet-explorer-8

IE8 querySelector null vs normal null

好久不见. 提交于 2020-01-20 18:42:47
问题 I just found really interesting behaviour in ie8. It turns out null is not always null. // just normal, casual null hanging out in the sun var nullA = null; // query for non existing element, should get null, same behaviour also for getElementById var nullB = document.querySelector('asdfasfdf'); // they are equal console.log(nullA === nullB); // false nullA instanceof Object; // will throw 'Object expected' error in ie8. Black magic nullB instanceof Object; Anyone has an explanation for that?

IE8 querySelector null vs normal null

纵饮孤独 提交于 2020-01-20 18:40:46
问题 I just found really interesting behaviour in ie8. It turns out null is not always null. // just normal, casual null hanging out in the sun var nullA = null; // query for non existing element, should get null, same behaviour also for getElementById var nullB = document.querySelector('asdfasfdf'); // they are equal console.log(nullA === nullB); // false nullA instanceof Object; // will throw 'Object expected' error in ie8. Black magic nullB instanceof Object; Anyone has an explanation for that?

jQuery 1.7.1 ButtonSet in IE8 not consistently firing the change event

岁酱吖の 提交于 2020-01-17 08:02:50
问题 Seeing a problem with a jQuery UI buttonset in IE8 only. Under IE 8, the buttonset does not consistently fire the change event. <!DOCTYPE html> <html> <head> <link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.16/themes/south-street/jquery-ui.css" rel='stylesheet' type='text/css'> <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.js"></script> <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.11/jquery-ui.js"></script> <script language="javascript"> $(document)

jQuery cycle not working in IE8 - IE10

末鹿安然 提交于 2020-01-17 05:19:08
问题 Can someone help me figure out why a jQuery cycle call isn't working in the following website? http://www.tamarackwellington.com/#floorkey The problem is with the cycle setup under the "Floor Key" section. For some reason only the arrows show up in IE8 to IE10, and the floorplans never do. I had this code in a document.ready(), but that seemed to cause the same problem in other browsers as well. Putting it in a window.load() solved it, except in IE8 to IE 10. $(window).load(function() { $('

Jquery Localscroll ie8

笑着哭i 提交于 2020-01-16 19:38:14
问题 I'm having a problem with the jquery localscroll plugin, it seems to work fine on all browsers except IE8. In IE8 it scroll down and works apart from it doesn't scroll to the right id. $(document).ready(function(){ $('#nav').localScroll({ duration: 2000, easing: "swing"}); //.parallax(xPosition, speedFactor, outerHeight) options: //xPosition - Horizontal position of the element //inertia - speed to move relative to vertical scroll. Example: 0.1 is one tenth the speed of scrolling, 2 is twice

why cellspacing is not supported in IE8?

為{幸葍}努か 提交于 2020-01-16 18:12:31
问题 I've a table with the following property set. and the table is for the results of repeater control. This works fine with IE7/older versions and am able to get a border for the table with the results displayed But when try the same with the IE8, Cellspacing doesn't seem to have any effect and am not able to get the border around the table.. Any suggestion on how to resolve this issue?? 回答1: Looks like the IE Team changed a few things in v8. More here: http://msdn.microsoft.com/en-us/library

Images don't show up in IE8

允我心安 提交于 2020-01-16 13:11:40
问题 As part of my job post announcements to a proprietary, password-protected site. There is no HTML control in the announcement panel nor is there a button that allows you to insert an image. I've worked around these limitations by making my own basic HTML pages with tables with images using the "img" tag. I open the HTML page in Firefox, then copy the web page into the announcement panel. I'm on a mac, so it's been working great in Firefox and I have IE6 in Parallels, and there is no problem

IE8 window.open SSL Certificate issue

会有一股神秘感。 提交于 2020-01-16 11:56:19
问题 I have a web based application that uses a self signed certificate. When you log into the application, you have to accept the certificate. This is a pain, but..we are OK with that for the time being, and everything is fine. When you click on the help link, it uses java script window.open to open the help in a new window. This all works fine. Except in IE8. In IE8, when I use window.open to open the help file, it again asks the user to accept the SSL certificate. It is like it is in a new

-ms-filter for gradient in IE8 via jquery

蓝咒 提交于 2020-01-16 10:43:49
问题 I am experimenting on this color control panel where a user can change the look and feel of the page using a slide in control panel. An added complexity is that the slide-in panel is in parent window where as the page that the changes are made to is inside an iframe. I want the changes to take affect as they are made inside the control panel. For this I don't want to use AJAX. For this I have devised an algorithm and it is working fine. Everything apart an issue with IE8 is working fine. I am

Angular and IE8 — HTML5 elements not styled inside ng-view

纵然是瞬间 提交于 2020-01-15 15:30:30
问题 So I am trying to get angular working on IE8. I have followed all the steps on http://docs.angularjs.org/guide/ie and it seems to be working -- I see the content of ng-view rendered on IE8 when I switch between views. The problem is that I don't actually see any content in the inspector: .. it's just an empty ng-view tag. I can see all of the content on the page, but no styling is applied to anything inside ng-view . I am not sure whether this is an angular or HTML5 issue. I have added the