Quote:
Originally Posted by 6arredja
how do you execute two js commands through the <a> tag
ex:
Code:
<a href="#" onclick="tggle('home'); Effect.SlideDown('home');">adfasdf</a>
that does not work
|
That should work. Are you getting any JS errors? Check Mozilla's JS console....
You can also write that like this, slightly more efficiently:
Code:
<a href="javascript: tggle('home'); Effect.SlideDown('home');">adfasdf</a>