Get Class of Clicked Element Using JavaScript

In this tutorial we will see how to Get Class of Clicked Element Using JavaScript. The target Event Property and HTML DOM className Property are used for this.

HTML Code

HTML Code is given below, This code contains three main HTML elements which include button, input element and a paragraph element. All three elements have different classes assigned to them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Class of Clicked Element Using JavaScript</title>
</head> 
<body>
    <button class="red" onclick="getClassName()">Button</button>
    <input type='submit' class="blue" value="Submit" onclick="getClassName()">
    <p class="yellow" onclick="getClassName()">My Class is Yellow.</p>
</body>
</html>

target Event Property

The target Event Property returns the HTML element that has triggered the event.

It is supported by all major browsers.

HTML DOM className Property

The HTML DOM className Property sets or returns the class name of HTML element.

It is also supported by all major browsers.

JavaScript Code

In this example, whenever HTML element is clicked the function is executed which will then read the class name of clicked html element using target property and className property.

Take a look at the code given below.

<script>
function getClassName()   
{ var cl=event.target.className;
  alert(cl);
}
</script>

Demo

Video Tutorial

Watch video tutorial on how to Get Class of Clicked Element Using JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript 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