Need some help to simulate a click/keyup if it's possible :)
So this is the status quo; I got a jQuery
keyup() function. I also got a javascript countdown clock (60 seconds). When the countdown clock reaches 0 i want to launch the
$("#id").keyup(function(){}); function.
Is there possible to simulate a keyup event when the timer reach zero?
I know I could do this by omitting my script with
function myFunction(){}; instead of
$("#id").keyup(function(){}); and then give the input field
onKeyUp="myFunction()".. But I don't want to to it that way, so would be great if you've got some tricks up in your sleeves
