I have a table in the head i have a button when the button is clicked i wnt the table rows to slide down for that i have used slideToggle(); but that is not working instead of the smooth slide effect it just shows & hide i tried slideToggle('slow') & slideToggle(500) but it did not work
$(document).ready(function()
{
$("#submenu").hide();
$("#mbtn").click(function(){
$("#submenu").slideToggle(500);
});
});