Hide/Show A Div After A Few Seconds repeatedly andrey четверг, 20 марта 2014 г. No Comment

We can achieve using javascript's setInterval() and setTimeout() method.

setInterval(function() { 
$("#myDiv").hide();
setTimeout(function() {
$("#myDiv").show();
},1000);//hide timing
},3000); //show timing

Here is the DEMO
We can achieve using javascript's setInterval() and setTimeout() method.

setInterval(function() { 
$("#myDiv").hide();
setTimeout(function() {
$("#myDiv").show();
},1000);//hide timing
},3000); //show timing

Here is the DEMO
by Jillur Rahman

Jillur Rahman is a Web designers. He enjoys to make blogger templates. He always try to make modern and 3D looking Templates. You can by his templates from Themeforest.

Follow him @ Twitter | Facebook | Google Plus

No Comment