I have a list of buttons that have an onclick event inline
<button id='someId' class='clicker' onclick='doSomething(someId)'>Clicky<button>
<button id='someId' class='clicker' onclick='doSomething(someId)'>Clicky<button>
<button id='someId' class='clicker' onclick='doSomething(someId)'>Clicky<button>
<button id='someId' class='clicker' onclick='doSomething(someId)'>Clicky<button>
The id of the button is the same as the variable passed to the doSomething function.
Is there a way, using jQuery to fire the onclick event for each button with a delay of 200 ms between clicks?
something like
$('.clicker').each(function(){
// wait 200 ms
// then fire event
});
the above function just waits 200ms and then fires all events, rather than spacing them out. any way to add delay between events?