jQuery 1.4.2 - is $("#foo").hide("normal") broken or am I crazy?
Posted
by karim79
on Stack Overflow
See other posts from Stack Overflow
or by karim79
Published on 2010-04-05T11:55:47Z
Indexed on
2010/04/05
12:03 UTC
Read the original article
Hit count: 148
jQuery
Hi all,
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 duplicate this using several different scenarios. Just try this:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$("button").click(function() {
$("div.text").hide("normal");
});
</script>
<div class="test">Hello this is a test</div>
<button>Click</button>
© Stack Overflow or respective owner