Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function () {
- $("#add").click(function () {
- let item = $("#title").val()
- $("#todo").append(`<li>${item}</li>`)
- $("#title").val("");
- })
- $("html").on("click", "li", function () {
- var random = Math.floor(Math.random() * 3)
- var random_text
- if (random === 0) {
- random_text = "Kek"
- }
- else if (random === 1) {
- random_text = "Omg"
- }
- else {
- random_text = "true"
- }
- if(window.confirm("Вы точно хотите удалить этот пункт?" + " " + random_text)) {
- $(this).fadeOut(1000)
- setTimeout(() => $(this).remove(), 1000)
- }
- })
- })
Add Comment
Please, Sign In to add comment