jQuery setTimeout();
HTML Code
In 3 sec - this title will change it's color to red!
Title
CSS Code
.the_title{
color:blue;
}
JS / jQuery Code
setTimeout(function(){
$(".the_title").css("color", "#F00");
}, 3000);
PHP Code
Code Results:
In 3 sec - this title will change it's color to red!