I want to know if I can determine if the page is not ready yet or not? because if the page is not ready I would like to insert an animation there.
I found something like this from previous Questions like this:
var ready = false;
$(document).ready(function () {
ready = true;
});
but it doesn't really help me. is there any other way to determine if page is not ready yet? or any way to add loading screen when page is not ready.