/ Published in: jQuery
URL: http://papermashup.com/jquery-fading-a-div-after-a-certain-time/
Expand |
Embed | Plain Text
$(document).ready(function(){ setTimeout(function(){ $("div.mydiv").fadeOut("slow", function () { $("div.mydiv").remove(); }); }, 2000); });
You need to login to post a comment.
