I have seen slideUp and slideDown in jQuery. What about functions/ways for sliding to left and right?
slideUp
slideDown
You can do this with the additional effects in jQuery UI: See here for details
Quick example:
$(this).hide("slide", { direction: "left" }, 1000); $(this).show("slide", { direction: "left" }, 1000);
2.1m questions
2.1m answers
60 comments
57.0k users