jquery onclick add margin-left
问题 I'm trying something pretty simple in JS but I can't make it work... I would like when clicking on a div to add a negative margin-left to another div, but I want it to happened everytime I click on the div, not only one time as it does now. Eveytime I click on my #next_nav, I would like the #nav to move from 10px negative. here it only works one time. here is my js : $(function() { $('#next_nav').click(function () { $( "#nav" ).css('margin-left','-10px'); }); }); and my HTML : <div id="next