Issue with Sliding Up/Down a Hidden Div using .toggle()
- by user1760110
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