Hello,
First of all, I am not that much experienced with JQuery, i have seen slideUp
and slideDown
, what about are the functions/ways for sliding to left and right?
Thanks
Hello,
First of all, I am not that much experienced with JQuery, i have seen slideUp
and slideDown
, what about are the functions/ways for sliding to left and right?
Thanks
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);