There is such a piece of code:
$( ".left" ).click(function() { event.preventDefault(); $(".slideritems").css("margin-left", "-268px"); }); When you press the button, the whole div should move to the left by 268px, but not one-time, but each time, when you press further and further. Tell me how to implement it? something I can not find the answer anywhere