I would like you show an alert message after the function keyup(). For this I use the following code:
$('#myInputingNumber').keyup(function() {
alert ("Key Up")
})
This works good and the alert message shows after each keyup call. But this is not really good.
Is there any way to check, if the user has 2 seconds long no "keyup" and show only then the alert message?