18 lines
452 B
JavaScript
18 lines
452 B
JavaScript
|
const btn = document.getElementById("btn");
|
||
|
const container = document.getElementById("container");
|
||
|
|
||
|
btn.addEventListener("click", () => {
|
||
|
createNotification();
|
||
|
});
|
||
|
function createNotification() {
|
||
|
const notification = document.createElement("div");
|
||
|
notification.classList.add("test");
|
||
|
|
||
|
notification.innerText = "Warning..";
|
||
|
|
||
|
container.appendChild(notification);
|
||
|
|
||
|
setTimeout(() => {
|
||
|
notification.remove();
|
||
|
}, 3000);
|
||
|
}
|