I use this very simple jQuery code:
$("h3").click(function(){
$(this).next("table").slideToggle("slow");
});
The result itself actually works, and the table appears / disappears when clicked, but there is no “slide” effect at all - I tried without “slow” and “slow” - the same result !?
Its almost like I just use .toggle () ...
I can’t understand what could be wrong except for the size of the table, total max, 12 rows.
Any ideas?
source
share