Looking for help with a script to create a splash/intro page loader.
$(function(){
setTimeout(function() {
$('#splash').fadeOut(500);
}, 6000);
});
The current script hides the intro page after 6 seconds, but the issue is that the scrollbar remains visible. I am looking for a solution to hide the scrollbar while the intro page loads for those 6 seconds.
If anyone has any advice or suggestions, it would be greatly appreciated. Thank you!