I'm using jQuery and the Animate.css library to animate the text on my landing page. How can I detect when the page has finished loading so that I can call a function to animate the landing page.
Asked
Active
Viewed 30 times
0
-
Does this answer your question? [Detect if page has finished loading](https://stackoverflow.com/questions/7083693/detect-if-page-has-finished-loading) – ikiK Apr 12 '21 at 16:21
-
Checkout the loading entrance of this web page and understand what i wanted to achieve....(http://obys.agency) – O.smith Effizzy's Tech Apr 14 '21 at 09:43
1 Answers
1
$( document ).ready(function() {
console.log( "ready!" );
});
More here: https://learn.jquery.com/using-jquery-core/document-ready/

Dawid Turek
- 46
- 2