I have this script and it works in half; The loader displaying in all pages but I want to show it only in home for first access.
sessionStorage.setItem('visited' , false);
var visited = sessionStorage.getItem('visited');
if (visited != true) {
jQuery(window).load(function() {
jQuery(".famous-loader-overlay").delay(1500).fadeOut(1500);
});
} else {
jQuery(window).load(function() {
jQuery(".famous-loader-overlay").hide();
});
}
sessionStorage.setItem('visited', true);