Answers for "jquery show loading until page load"

0

on page fully loaded jquery

$(window).load(function () {
    ....
});

If you have to wait for an iframe (and do not care about the assets, just the 
DOM) - try this:

$(document).ready(function() { 
    $('iframe').load(function() { 
       // do something
    });
});
Posted by: Guest on June-12-2021
-1

if page is loading then show loader in js

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
Posted by: Guest on April-25-2021

Code answers related to "jquery show loading until page load"

Code answers related to "Javascript"

Browse Popular Code Answers by Language