Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

call javascript function after page load complete

//for jquery
//after document load
$(document).ready(function() {   //same as: $(function() { 
     alert("hi 1");
});
//after full window load including image src css file
$(window).load(function() {
     alert("hi 2");
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #call #javascript #function #page #load #complete
ADD COMMENT
Topic
Name
3+3 =