HomeLanguagesJavascriptHow to use the alert() method in JavaScript ?

How to use the alert() method in JavaScript ?

In this article, we will learn how to use the alert() method in JavaScript. The alert() method is used to show an alert box on the browser window with some message or warning. We can use it as a message or as a warning for the user.

Approach: To show an alert on the browser window, we make a button. When we click on the button, a click event listener is called that calls a function. In that function, we use the alert() method that contains a message for the user. When we click the button, the alert window will pop up on the browser window that contains a message or warning with a button. 

Syntax:

alert(message/warning);

Below is the implementation of the above approach:

Example:

HTML




<!DOCTYPE html>
  
<html lang="en">
  <head>
    <style>
      body {
        /* path of the image */
        background-image: url(gfg_complete_logo_2x-min.png);
  
        /* Image is always centered*/
        background-position: center center;
  
        /* set the image fixed to the viewport */
        background-attachment: fixed;
  
        /* Not repeat image */
        background-repeat: no-repeat;
  
        /* Set background size auto */
        background-size: auto;
      }
    </style>
  </head>
  
  <body>
    <div style="margin-left: 500px; margin-top: 300px;">
      <button style="font-size: 20px;" 
       class="btn" onclick="fun()">
       click me
      </button>
    </div>
  
    <script>
      function fun(){
       alert("Welcome on gfg!");
      }
    </script>
  </body>
  
</html>


Output:

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32548 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6924 POSTS0 COMMENTS
Nicole Veronica
12039 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12150 POSTS0 COMMENTS
Shaida Kate Naidoo
7060 POSTS0 COMMENTS
Ted Musemwa
7302 POSTS0 COMMENTS
Thapelo Manthata
7018 POSTS0 COMMENTS
Umr Jansen
7006 POSTS0 COMMENTS