Hi,
I want to perform toggle effect for a grid in my page - similar to this FIRST ONE UNDER EXAMPLES http://api.jquery.com/slideToggle/#slideToggle-options.
However I have replicated to my code and not able to achieve this. Can anyone help me sort this out. Attached is the aspx code.
Loading
Scott LyslePosted Aug 26, 2013, 7:12 AM
You have named your div 'p' (which you might want to rename).
$("p").slideToggle("slow");
Is the line you are using, change it to this given 'p' is the name of the div:
$("#p").slideToggle("slow");