jquery run after page load
$(window).on('load', function() {
// code here
});
jquery run after page load
$(window).on('load', function() {
// code here
});
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");
});
ajax run function after page load
$(document).ready(function() {
// Code to run as soon as the page is ready
})
call javascript function after page load complete
document.addEventListener('readystatechange', event => {
// When HTML/DOM elements are ready:
if (event.target.readyState === "interactive") { //does same as: ..addEventListener("DOMContentLoaded"..
alert("hi 1");
}
// When window loaded ( external resources are loaded too- `css`,`src`, etc...)
if (event.target.readyState === "complete") {
alert("hi 2");
}
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us