Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

make div text disappear after 5 seconds using jquery?

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

like image 806
EzzDev Avatar asked Dec 15 '09 23:12

EzzDev


2 Answers

You can use empty() to remove a <div> contents:

setTimeout(fade_out, 5000);

function fade_out() {
  $("#mydiv").fadeOut().empty();
}

assuming:

<div id="mydiv">
  ...
</div>

You can do this with an anonymous function if you prefer:

setTimeout(function() {
  $("#mydiv").fadeOut().empty();
}, 5000);

or even:

var fade_out = function() {
  $("#mydiv").fadeOut().empty();
}

setTimeout(fade_out, 5000);

The latter is sometimes preferred because it pollutes the global namespace less.

like image 62
cletus Avatar answered Sep 18 '22 15:09

cletus


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.

http://api.jquery.com/delay/

like image 24
Nagama Inamdar Avatar answered Sep 18 '22 15:09

Nagama Inamdar