javascript - How to detect if a page has fully rendered using jQuery? -
when using $(document).ready(functioon(){alert("loaded.")});
pops alert box says "loaded." before page has loaded (in other words there're loading still going on images).
any thoughts?
$(window).on('load', function() { //everything loaded });
Comments
Post a Comment