Created
December 17, 2024 05:06
-
-
Save shohag-cse-knu/dda752c9df4107c4e83727dd98a5aeb6 to your computer and use it in GitHub Desktop.
Javascript calling a function or operations after complete page load
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| document.onreadystatechange = function(){ | |
| if(document.readyState === 'complete'){ | |
| // Your Code here | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment