hey guys, if a "ul" has more than one "li"-element inside of it, somehting should happen, otherwise not! what am I doing wrong?
if ( $('#menu ul').length > 1 ) {
regards matt
|
hey guys, if a "ul" has more than one "li"-element inside of it, somehting should happen, otherwise not! what am I doing wrong?
regards matt |
|||
|
|
|
You have to count the li elements not the ul elements:
If you need every UL element containing at least two LI elements, use the filter function:
You can also use that in your condition:
|
||||
|
|
|
alert( "Size: " + $("li").size() ); OR alert( "Size: " + $("li").length ); |
|||
|
|