Issue with Sliding Up/Down a Hidden Div using .toggle()
Posted
by
user1760110
on Stack Overflow
See other posts from Stack Overflow
or by user1760110
Published on 2012-11-26T22:46:17Z
Indexed on
2012/11/26
23:04 UTC
Read the original article
Hit count: 233
Can you please take a look at this JSFIDDLE sample which I am trying to create a smooth animate of hidden div from down to up on mouse hover. As you can see the div appears from left down corner but I would like to animate it from bottom to top. I tried to use animate() but I didn't know how to change the hidden div statue from hidden? here is the code I am using:
$(document).ready(function() {
$('#handler').hover(function(){$('#hidden').toggle(1000)});
});?
Can you please let me know how i can use jQuery easing plugin for something like this? Thanks
© Stack Overflow or respective owner