div hide tag

  1. Yepkoo

    Auto hide and show tag code with javascript

    Hide code, The number indicates after how many seconds the div will be hidden. setTimeout(function() {$(".hide_div").fadeOut(); }, 5000); Show code, shows after how many seconds the number div will be visible. setTimeout(function() {$(".show_div").fadeIn(); }, 10000); For example, by making...
Top