> $(document).ready(function(){
>         $('a#link').click(
>                 $('div#bugDiv').slideToggle('slow')
>                 );
>
> });
>
> Right now, the way it works, the bugdiv slides to hidden on load, as
> though it's just executing the code as opposed to associating it as
> the onclick action..

Matt, can you post a link that shows this code in action?  What you
describe should not be happening.  Note that you may want to 'return
false' from the click handler as well (although that won't effect the
current problem).

Mike

Reply via email to