Monday, November 18, 2024
Google search engine
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

Most Popular

Recent Comments