I'm using this very simple jQuery code:
$("h3").click(function(){
$(this).next("table").slideToggle("slow");
});
The outcome itself actually works and the table does appear/disappear on click, but there is no effect of "slide" whatsoever - i've tried without "slow" and with "slow" - same result!?
Its almost like i'm just using .toggle()...
I cant see what could be wrong apart from the size of the table, which is only max, 12 rows.
Any ideas?