I need to show a div (e.g. #mybox) in 10secs after page load, keep it visible for another 10 secs and then hide with a nice sliding in/out effects.
Thanks a lot for
$(function(){ setTimeout(function(){ $('ur_element').show(function(){ setTimeout(function(){ $('ur_element').hide() }, 10000) }) }, 10000) })