Answers for "message box in html"

26

javascript confirm yes no

var proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}
Posted by: Guest on May-02-2020
12

how to make an alert in html

<script>
  alert('this is an alert');
</script>
Posted by: Guest on May-06-2020
1

js alert format text

\b = Backspace 
\f = Form feed 
\n = New line 
\r = Carriage return 
\t = tab
Posted by: Guest on July-07-2020
7

javascript alert

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

how to make alert in javascript

alert("Alert")
Posted by: Guest on December-30-2020
0

how to make an alert on a page

go to inspect element, go to console. type in 
alert("text")
Posted by: Guest on June-18-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language