some - show div for 5 seconds javascript
make div text disappear after 5 seconds using jquery? (4)
i need to make a div text disappear after x seconds of displaying it using an ajax call
can you help me on this please ?
thanks
This should work:
$(document).ready(function() {
$.doTimeout(5000, function() {
$('#mydiv').fadeOut();
});
});
You can try the .delay()
$(".formSentMsg").delay(3200).fadeOut(300);
call the div set the delay time in milliseconds and set the property you want to change, in this case I used .fadeOut() so it could be animated, but you can use .hide() as well.
You may need to display div text again after it has disappeared. This can be done in 1 line.
$('#div_id').empty().show().html(message).delay(3000).fadeOut(300);
You would need to set something like setTimeout('$("#id").fadeOut("slow")', 5000) but other than that it depends on what the rest of your code looks like