Sometimes we do need an operation after the page fully loaded. This we can check with $ajaxStop() handler of the jquery.
$( document ).ajaxStop(function() {
$( ".message" ).text( "Page load complete." );
});
Sometimes we do need an operation after the page fully loaded. This we can check with $ajaxStop() handler of the jquery.
$( document ).ajaxStop(function() {
$( ".message" ).text( "Page load complete." );
});
by
Tags:
Leave a Reply