Get ID of Clicked Element using JavaScript

In this tutorial we will see How To Get ID of Clicked Element using JavaScript. The JavaScript this object is used which contain all properties of selected element.

HTML Code

HTML Code is given below, This code contains button elements, Whichever button is clicked, it will fire the getId() function and this object is passed to it.

<!DOCTYPE html>
<html>
<head>
    <title>Get ID of Clicked Element using JavaScript</title>
</head>
<body>
    <button id='1' onclick="getId(this)">Button 1</button>
    <button id='2' onclick="getId(this)">Button 2</button>
</body>
</html>

JavaScript Code

JavaScript Code is given below, In this code the JavaScript this object refers to the clicked button element.

The JavaScript function will take the selected button element as object inside the variable named 'btn'. This variable will be used as object to read id of the clicked button.

HTML Dom Id property is used to read the id, HTML dom id property of object sets or returns the id of html element.

The Id of clicked button is then displayed using alert method.

<script>
function getId(btn)
{
alert(btn.id);
}
</script>

Demo

Video Tutorial

Watch video tutorial on How To Get ID of Clicked Element using JavaScript.

Also Read Get ID of Clicked Element using JQuery.

Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript Change id of Element with JavaScript JavaScript Change li Text Color