I'm having trouble with a piece of code
$(function(){
$('input.no').click(function(){
$(this).animate({"left" : "80px"}, 150);
$(this).removeClass().addClass('click'); });
$('input.click').click(function(){
$(this).animate({"right" : "0px"}, 150);
});
});
and here you can see the full code http://pastebin.me/a5b13717c5d7125cd904572c041ce3e1 not working :(