slideDown Doesn't work for me.
Posted
by
Lucifer
on Stack Overflow
See other posts from Stack Overflow
or by Lucifer
Published on 2011-03-02T23:20:30Z
Indexed on
2011/03/02
23:24 UTC
Read the original article
Hit count: 379
Hi All,
Why doesn't this jQuery code work?
$(document).ready(function () {
$('currentPage').click(function() {
$('myaccount').slideDown('slow', function() {
// Animation complete.
});
});
});
<li><a class="currentPage">Home</a></li>
<li><a class="myaccount">My Account</a></li>
Anyone got any ideas? I don't.
© Stack Overflow or respective owner