How to use jquery's .css to increase position left??
Hi, I want to use the .css of jquery to take lets say 5 buttons css position absolute left value.
I want increase this value. So it will move the buttons to the right. I have a button that when clicked that it will run this jquery code. Where the 5 buttons moves to the right. I want to do this all at ones.
In otherwords I want to put $("#1_button,#2_button,#3_button").css("left": function (value) { code to increase left position value});
I want to do something like that. Is it possible? and how would one do it.
what I want it to do is grab all the buttons left position value and then add numbers to it to increase all buttons left position shifting all to the right.
So if I add 10px I want all buttons to increase by 10px causing it to move 10px to the right.
would like to know how this can be done??