Answers for "javascript confirmation alert"

2

alert confirm prompt javascript

if (confirm("Press a button!")) {
    console.log("Accepted")
  } else {
    console.log("Declined")
  }
Posted by: Guest on May-01-2021
3

javascript prompt

var person = prompt("Please enter your name", "Harry Potter");

if (person != null) {
  document.getElementById("demo").innerHTML =
  "Hello " + person + "! How are you today?";
}
Posted by: Guest on July-29-2020
7

javascript alert

alert("string");
Posted by: Guest on May-30-2020
0

Confirm alert

$.alert({    title: 'Alert!',    content: 'Simple alert!',});
Posted by: Guest on June-09-2021

Code answers related to "javascript confirmation alert"

Code answers related to "Javascript"

Browse Popular Code Answers by Language