Birdy
2010-12-06 09:56:50 UTC
function f_name () {
showMessage("This is the first message");
showMessage("This message shows after the first is closed");
showMessage("This is the last message to be shown");
}
So the idea of this function is to show a div with the message in it with each showMessage(). However, I would like the function to pause, waiting for the user to click somewhere. The user would see the first message, click, then second message, click, and then the last message. Click. Stop.
Any ideas?