I have a button on a page, that I want to be fired maximum once every second. Meaning that if the user click on it like a madman for five second, it will only be executed five times. I've been googling and searching Stack, with no results. Also tried Alman's throttle/debounce plugin, but doesn't seem to work on clicks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
use a timer
|
|||
|
|
|
Create a throttle that ends the event unless it has been 1 second since the previous click.
Or you can use a data property to avoid the extra variable:
|
|||
|
|
|
Try this instead :
|
|||
|
|
|
Why not disable the button for 1 second in the click event for the button?
|
||||
|
|
