So I checked http://api.jquery.com and the same issue..(in IE7 and FF3)

Now I was interested what went wrong, downloaded dev version, checked the error message:

Line 2097 seemed the issue:
div.appendChild( document.createElement('Comment').data = "" );
I guess appendChild assumes an Element object, however:
document.createElement('Comment').data = ""
returns an empty string. Removing the .data="" fixes the issue for now, but I have no idea how it will effect the rest of the code.
I can't imagine that jQuery team released a non working version! Am i doing something wrong or do more people have this issue?
I still have some other pages which gives errors on events, but first a smoke :)
No comments:
Post a Comment