I'm trying to use jQuery to toggle a div if another div does not show in the dom. I've got a jsfiddle going, but so far no luck
if ( $("div.nothere").length > 0 ) {
$("div.showme".toggle();
}
I'm overtired and think I might be getting hung up on a small syntax error. Anyone see the problem? http://jsfiddle.net/NFQCc/
)after"div.showme"... Check the error console next time - Firebug clearly states"missing ) after argument list" line 22. – Šime Vidas Nov 4 '11 at 18:12