Return to Snippet

Revision: 45874
at May 10, 2011 14:39 by marshallgmoore


Initial Code
$(function(){
    $('p').click(function(){
        $(this).animate({'paddingLeft': '30px'},
            {complete:function(){
                $(this).animate({'paddingTop': '30px'});
            }
        });
    });
});

Initial URL


Initial Description


Initial Title
jquery chained animation on click

Initial Tags
jquery, animation

Initial Language
jQuery