Answers for "alert in javascript"

3

js alert

// Alert used to display a message to the user.
alert("Hello, World!"); // Displays Hello, World! to the user.
// You can also use:
window.alert("Hello, World!"); // Also displays Hello, World! to the user.
Posted by: Guest on August-10-2021
11

how to make an alert in html

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

javascript newline in alert

alert("Well I'm line 1 \nAnd I am a new line "); //new line in alert box
Posted by: Guest on August-05-2019
4

js alert

alert("Hello! I am an alert box!!");
Posted by: Guest on April-03-2020
5

simple alert program in javascript

alert("this is the alert")
Posted by: Guest on May-25-2020
0

alert in javascript

<html>
   <head>      
      <script type = "text/javascript">
         <!--
            function sayHello() {
               alert("Hello World")
            }
         //-->
      </script>     
   </head>
   
   <body>
      <input type = "button" onclick = "sayHello()" value = "Say Hello" />
   </body>  
</html>
Posted by: Guest on July-30-2021

Browse Popular Code Answers by Language