Usually when you are loading the specific content or if you are calling a page using ajax function, you need to show the loading GIF. Here you need to use a small function to show the loading, just to keep your user engaged to the content without getting distracted by clicking on the other page. This is very important tas to be performed by every coder while developing your web pages.
Because, we cannot lose a user by deviating from one page to other, which will eventually drops your website bounce rate.
Let's come to the main topic on how to insert the loading GIF to show the user that, your content is still loading if the internet is observring some slowness.
If your simple script is as below,
Then you need to use a simple code as below to load your specific page and a gif loader until the main content shows to the user.
Your html script
Your actual Javascript to show the loader.gif
loader = function(){
$('#img-load').show();
$( "#result" ).load( "example.php", function() {
$('#img-load').hide();
});
}
loader();
And that's it, you are done with this simple code
Do comment your opinion in the comment section.
Leave a Comment
Login to post a public Comment
Comments 1.
More source links for the related content.
https://stackoverflow.com/questions/27624825/display-a-loading-gif-in-a-div-until-div-loads-content-from-other-page
https://stackoverflow.com/questions/11072759/display-a-loading-bar-before-the-entire-page-is-loaded
https://smallenvelop.com/display-loading-icon-page-loads-completely/