- for each…in doesn’t work in Opera/IE/Safari. So avoid it when creating web pages and use for loops instead. In fact, you shouldn’t even be using it in arrays. oops. (Javascript is special in this way)
- While location is defined by most browsers, most let you redefine it in a local scope. Not Opera
- $(‘<a>’) may look correct in jQuery, but it will not work properly in IE. You must close the element tag. So it is $(‘<a />’)
January 1st, 2009 |
Tags: browser compatibility, ie, jquery, opera