jQuery Slide Element Up/Toggle Up
Share
Simple jQuery code snippet to slide page elements up or toggle up using jquery.slideToggle(). The difference is that jQuey’s slideUp() function is primarily used to slide elements out of view and then use slideDown() to make them reappear whereas jQuery’s toggleUp() function provide both this functionality within the same function call binded to the element.
SlideUp Example
$('#clickme').click(function() {
$('#book').slideUp('slow', function() {
// Animation complete.
});
});
http://api.jquery.com/slideUp/
SlideToggle Example
$('#clickme').click(function() {
$('#book').slideToggle('slow', function() {
// Animation complete.
});
});
http://api.jquery.com/slideToggle/