How to use Slide effect with jquery-ui?
$("img").click(function () {
$(this).hide("slide", { direction: "left" }, 1000);
});
From http://docs.jquery.com/UI/Effects/Slide
If you want to show the object and you want the slide towards the left, then you have to reverse the direction of the slide.
something like the following:
$("img").click(function () {
$(this).show("slide", { direction: "right" }, 1000);
});