[jQuery] Re: Im having trouble with selectors

2008-04-20 Thread alex.allah
You cannot put DD tag into DT. Look http://www.w3schools.com/TAGS/tag_dd.asp PS When working with DOM use firebug :)

[jQuery] Re: Im having trouble with selectors

2008-04-20 Thread alex.allah
You cannot put DD tag inside DT Read: http://www.w3schools.com/TAGS/tag_dd.asp PS Use firebug when working with DOM

[jQuery] Re: Im having trouble with selectors

2008-04-20 Thread alex.allah
tag cannot contain Correct structure is: read: http://www.w3schools.com/TAGS/tag_dd.asp

[jQuery] Which method is better?

2008-04-20 Thread alex.allah
Method #1 $('.someClass1').each(function(){ // Some stuff here }); $('.someClass2').each(function(){ // Some stuff here }); $('.someClass3').each(function(){ // Some stuff here }); Method #2 $('.someClass1, .someClass2, .someClass3, .someClass4').each(function() {