jQuery FadeIn from left to right

fadein, jquery

Solution

 $("#content").hide().show("slide", { direction: "left" }, 1500);

Problem

In my jQuery I fadein a div with an ID. I want that the fadein "moves" from the left to the right. My snippet so far: ``` $('#content').hide().fadeIn(1500); ``` Who can help me? Thank you!

Original source

Related problems