$('textarea.contact').click(function(){
$(this).animate({"backgroundPosition": "+=350 -=150"}, 500).delay(500);
$(this).animate({"backgroundPosition": "+=350 -=150"}, 500);
});
I'm using a background position library in order to animate a background. I would like to have the background slide half way. Pause in the middle, and then continue on it's way. unfortunately when I write the code this way the animation moves half way. pauses in the middle, and then restarts the animation from the beginning rather than incrementing. anyone know why?