HTML DOM Label Object


The HTML DOM Label Object in HTML represents the <label> element.

Syntax

Following is the syntax −

Creating a <label> element

var labelObject = document.createElement(“LABEL”)

Properties

Here, “LabelObject” can have the following properties −

PropertyDescription
ControlIt returns the control of the label
formIt returns a reference of enclosing form that contains the label
htmlForIt returns/sets the value of the for attribute of a label

Example

Let us see an example for Label htmlForproperty −

 Live Demo

<!DOCTYPE html>
<html>
<head>
<title>Label htmlFor</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>Label-htmlFor</legend>
<label id="CurrentEditor" for="editorTwo">Current Editor:</label><br>
<input type="text" id="editorOne" placeholder="editorOne">
<input type="text" id="editorTwo" placeholder="editorTwo">
<input type="button" onclick="getEventData()" value="Change Editor">
<div id="divDisplay">Label for attribute set as editor two</div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var labelSelect = document.getElementById("CurrentEditor");
   function getEventData() {
      if(labelSelect.htmlFor === 'editorTwo'){
         divDisplay.textContent = 'Label for attribute set as editor one';
         labelSelect.htmlFor = 'editorOne';
      }
   }
</script>
</body>
</html>

Output

This will produce the following output −

Before clicking ‘Change Editor’ button −

After clicking ‘Change Editor’ button −

Updated on: 30-Jul-2019

145 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements