diff --git a/Sources/justMUSIC/web/index.html b/Sources/justMUSIC/web/index.html
index 8353358..c385a14 100644
--- a/Sources/justMUSIC/web/index.html
+++ b/Sources/justMUSIC/web/index.html
@@ -54,6 +54,14 @@
}
});
});
+
+ window.addEventListener("load",function() {
+ // Set a timeout...
+ setTimeout(function(){
+ // Hide the address bar!
+ window.scrollTo(0, 1);
+ }, 0);
+});