I\'m using jQuery 1.5.1 This is my code:
$(\'.cellcontent\').animate({ left: \'-=190\'}, { easing: alert(\'start ani\'), duration: 5000, complete
from the jquery docs:
$( "#clickme" ).click(function() { $( "#book" ).animate({ opacity: 0.25, left: "+=50", height: "toggle" }, 5000, function() { // Animation complete. }); });