Possible Duplicate:
Javascript close alert box
Hi I would like to ask if it's possible to have an id #myID
which when clicked will pop-up an alert box and after a few seconds WITHOUT clicking the OK
button on alert it will redirect to another page? Here's my code:
$('#myID).click(function(){
alert('Ta-da! Do not click the OK button just wait for a few seconds before it redirects to other page.');
})
Somehow that's what I want. Is that possible?