jquery 1 second after page load

Solutions on MaxInterview for jquery 1 second after page load by the best coders in the world

showing results for - "jquery 1 second after page load"
Sara
22 Jan 2017
1jQuery(document).ready(function() {
2    setTimeout(function() {
3         ....
4    }, 2000);
5});
6