SyntaxFix
Write A Post
Hire A Developer
Questions
You can add timeout function in jQuery (Show alert after 3 seconds):
$(document).ready(function($) { setTimeout(function() { alert("Hello"); }, 3000); });