Add files via upload

This commit is contained in:
Muhammad Herdy Iskandar
2023-06-21 09:01:23 +07:00
committed by GitHub
parent f1c94482e8
commit 03a5f5cb86
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
var showText = function (target, message, index, interval) {
if (index < message.length) {
$(target).append(message[index++]);
setTimeout(function () { showText(target, message, index, interval); }, interval);
}
}
$(function () {
showText("h1", "I am error 404.", 0, 80);
});