jQuery vs Internet Exploder - Beware ID Clashes!
Tuesday, November 10th, 2009This is only a quickie, but important enough to spread the word (oh, btw IE blows!)
In all versions of Internet Explroer (IE 5,6,7,8 apparently), the browser silently creates an immutable global variable for every element ID. This can lead to naming clashes when using jquery.
For example, I had the following code:
startDate = $(’#startDate’);
Here the DOM [...]