I have the following code:
$('message').show(); $('message').hide();
How to add a 10 second delay between showing and hiding a prototype?
thanks
$('message').show(); Element.hide.delay(10, 'message');
You can use delay function