Does anyone know why .hide(\"normal\") does not seem to be working in jQuery 1.4.2? Is it a bug, has it been removed or am I just crazy? I\'ve managed to duplic
.hide(\"normal\")
Work's for me... you are wrapping:
$("button").click(function() { $("div.test").hide("normal"); });
in $(document).ready() aren't you?
$(document).ready()