I had developed a small animation using jquery. But my problem is when i am animating a div using flowing script
$('#square').animate({left: -350+"px"},'slow');
it is working great.. But when i am replacing left with right animation is not working
$('#square').animate({right: -350+"px"},'slow');
The above is not animating any..
what might be the problem?
Thank You