[jQuery] Re: Error in IE 5.5 / jQuery 1.1.3.1 - 'nodeName' is Null

2007-07-21 Thread bjb
The error seems when assigning an event to a class: $('.myclass).click(function() {return false;}); - error (only) in IE5.5 / jQuery 1.1.3.1 // works with IE7 etc $('#myid).click(function() {return false;}); - works with IE5.5 / jQuery 1.1.3.1 myclass and myid in html: li # s1.gif

[jQuery] Re: Error in IE 5.5 / jQuery 1.1.3.1 - 'nodeName' is Null

2007-07-21 Thread bjb
I changed $('.myclass).click(function() {return false;}); to $('a.myclass).click(function() {return false;}); now it works Thanks Bernd bjb wrote: The error seems when assigning an event to a class: $('.myclass).click(function() {return false;}); - error (only) in IE5.5 /