Saturday, January 31, 2026
HomeLanguagesJavascriptHTML DOM window event property

HTML DOM window event property

The window event property returns the event which is currently being handled by the site’s code in the current window.

Syntax:

event = window.event;

Note: This property has been DEPRECATED and is no longer recommended.

Return Value: This property returns the event object currently being handled.

Example: In this example, we will get the event type using this property.

html




<!DOCTYPE HTML>
<html
<head>
    <title>window event property</title>
</head>  
<body style="text-align:center;">
    <h1 style="color:green;"> 
        neveropen 
    </h1>
    <p>
    HTML | window event property
    </p>
    <button onclick = "Geeks()">
    Click Here
    </button>
    <p id="a">
    </p>      
    <script>
        var a = document.getElementById("a");
        function Geeks() {
            console.log(window.event)
            a.innerHTML="Event type is : "+window.event.type;
        }
    </script>
</body>  
</html>


Output:

Before Clicking Button:

After Clicking Button: 

In Console, the event object is:

Supported Browsers:

  • Google Chrome
  • Edge
  • Firefox
  • Safari
  • Opera
  • Internet Explorer
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12066 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS