[jQuery] Re: Im having trouble with selectors

2008-04-22 Thread justclint
Oh my gosh, I know better than that. What was I thinking. Ok, I will try some alternative method. Thanks for pointing that out. I do appreciate it. If I can not figure my problem out I will repost new issue. Thanks again. Cheers, Clint -- View this message in context: http://www.nabble.com/

[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] Re: Im having trouble with selectors

2008-04-20 Thread Karl Swedberg
Hi Clint, The dt element should never be the parent of a dd. Maybe you were thinking of dl? In that case you could select a dl that has a hidden dd descendant element this way: $('dl:has(dd:hidden)').addClass('menu_bg').trigger('click'); --Karl _ Karl Swedberg www.engli