You cannot put DD tag into DT.
Look http://www.w3schools.com/TAGS/tag_dd.asp
PS When working with DOM use firebug :)
You cannot put DD tag inside DT
Read: http://www.w3schools.com/TAGS/tag_dd.asp
PS Use firebug when working with DOM
tag cannot contain
Correct structure is:
read: http://www.w3schools.com/TAGS/tag_dd.asp
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()
{
4 matches
Mail list logo