mirror of
https://github.com/neon443/neon443.github.io.git
synced 2026-03-11 15:16:18 +00:00
12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
function showAlert() {
|
|
alert("Hey! this is under development. i told u not to click.");
|
|
};
|
|
|
|
function ntLnk() {
|
|
var ntLnkToast = document.getElementById("ntLnkToast");
|
|
ntLnkToast.className = "show";
|
|
setTimeout(
|
|
function() {
|
|
ntLnkToast.className = ntLnkToast.className.replace("show", "");
|
|
}, 3000);
|
|
} |