whatfor should:
be good? it is just syntactically wrong ... and it is not included in any script tag. either use:
included in script tags and call that function from the child with the call method or leave that and include the code i showed you above ... i suppose that only the menu-node has a hide method ... so this one should be called.
Code:
menuhide
function(){
// Toggle the menu display when link clicked.
menu.hide();
}
;
Code:
function myMenuHide() {
$( "#menu" ).hide();
}
Comment