Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

confirm prompt alert

// confirm, prompt, alert is popup

// confirm 
confirm("Are you still alive?")

// prompt
prompt("Enter your name")

// alert
alert("You are a nice person")

// confirm is used for ask ok or cancel if person says ok then ok return true if person says cancel then it will return false
// prompt is use of asking text and it will return that text
// alert is to popup a message 
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #confirm #prompt #alert
ADD COMMENT
Topic
Name
8+5 =