Open In App

HTML | DOM UiEvent detail Property

Improve
Improve
Like Article
Like
Save
Share
Report

The UiEvent detail property is used for returning a number with details about an event. 

The UiEvent detail property returns number which indicates the current click count when used on onclick and ondblclick whereas when used on onmousedown and onmouseup, it returns a number which indicates the current click count plus 1. 

Syntax :

event.detail

Below program illustrates the UiEvent detail property : 

Example: Finding out how many times the mouse was clicked in the same area. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>UiEvent detail property in HTML</title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>UiEvent detail property</h2>
    <br>
 
    <p>To check the current click count,
      double click the "Check Count" button.</p>
 
    <button ondblclick="count(event)">
        Check Count
    </button>
 
    <input id="clicks" type="text">
 
    <script>
        function count(event) {
 
            //  Return detail.
            var c = event.detail;
            document.getElementById("clicks").value =
                c;
        }
    </script>
 
</body>
 
</html>


Output: 

Before clicking the button: 

 

After clicking the button:

  

Supported Browsers:

  • Opera 12.1 and above
  • Internet Explorer 9 and above
  • Google Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Apple Safari 1 and above


Last Updated : 10 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads