How would I dynamically click a button again once it is clicked once by the user?
For example:
<input type='button' value='Click me once, and I will click twice!' onClick='click button again using JavaScript' />
So I want to click the button, and have the button click it's self again.
Is this possible, and how would I do this?
Thanks!