I\'m using jQuery 1.5.1 This is my code:
$(\'.cellcontent\').animate({ left: \'-=190\'}, { easing: alert(\'start ani\'), duration: 5000, complete
You need to pass a function to call. Instead you are calling the function.
complete: function() { alert('end ani'); }