We can achieve using javascript's setInterval() and setTimeout() method.
Here is the DEMO
setInterval(function() {
$("#myDiv").hide();
setTimeout(function() {
$("#myDiv").show();
},1000);//hide timing
},3000); //show timing
Here is the DEMO
Very Nice Dude!
ReplyDeleteThanks for your comment
ReplyDelete