Open In App

HTML | DOM UiEvent detail Property

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. 




<!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:


Article Tags :