How to deduct margin left using jquery -


hi need deduct css margin using jquery have script please me need deduct 200 px var mergin = $(this).css("left") - 200; not work

$(this).find('.circle').click(function(){     var margin = $(this).css("left");     $('.move_plane').animate({marginleft:margin}); }); 

you need script

var margin = parseint( $(this).css("left")) - 200; enter code here 

Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -