diff --git a/index.html b/index.html index 8e130649..fa085964 100644 --- a/index.html +++ b/index.html @@ -1,70 +1,80 @@ - + - - - - - + + + - - - - - - + + + + + + - - - -
- Home - Bookmarklets - Games - Apps - Settings - Open Blank - -
-
-

selenite.

- -

better thank me for this unblocked website

-
-
- -
-
- -
-
- -
-
-
- - + document.getElementById("randomquote").innerHTML = randomQuote; + }) + .catch((error) => console.error("Error loading quotes:", error)); + }); + + + + + + + Selenite + + + + + +
+ Home + Bookmarklets + Games + Apps + Settings + Open Blank + +
+
+

selenite.

+ +

better thank me for this unblocked website

+
+
+ +
+
+ +
+
+ +
+
+
+ + diff --git a/js/randomquote.js b/js/randomquote.js deleted file mode 100644 index 71502a39..00000000 --- a/js/randomquote.js +++ /dev/null @@ -1,16 +0,0 @@ -$.getJSON("/data/quotes.json", function (data) { - let index = data[Math.floor(Math.random() * data.length)]; - if (index.includes("OGNUM1") && index.includes("SQRTNUM1")) { - let ognum = Math.floor(Math.random() * 3000); - index = "the square root of " + ognum + " is " + Math.sqrt(ognum); - } else if (index.includes("CURRENTURL")) { - index = window.location.hostname; - } - if (document.readyState === "complete") { - document.getElementById("randomquote").innerHTML = index; - } else { - document.addEventListener("DOMContentLoaded", () => { - document.getElementById("randomquote").innerHTML = index; - }); - } -});