HTML | DOM createAttribute() Method
This createAttribute() method is used to create an attribute with the specified name and returns the attribute object. The attribute.value property is used to set the value of the attribute and the element.setAttribute() method is used to create a new attribute for an element. This method() contains the name of the created attribute as a parameter values.
Syntax:
document.createAttribute( attributename )
Example:
<!DOCTYPE html> <html> <head> <title>DOM createAttribute Method</title> <style> .gfg { color: green; font-weight:bold; font-size:50px; } body { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>DOM createAttribute() Method</h2> <button onclick="geeks()">Submit</button> <script> function geeks() { var tag_name = document.getElementsByTagName("h1")[0]; var attr = document.createAttribute("class"); attr.value = "gfg"; tag_name.setAttributeNode(attr); } </script> </body> </html> |
Output:

Example 2:
<!DOCTYPE html> <html> <head> <style> h1 { color:green; } body { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>DOM createAttribute() Method</h2> <a id="gfg">Visit GeeksForGeeks...</a><br><br> <button onclick="geeks()">Submit</button> <script> function geeks() { var id= document.getElementById("gfg"); var new_attr = document.createAttribute("href"); new_attr.value = "#"; id.setAttributeNode(new_attr); } </script> </body> </html> |
Output:

Supported Browsers: The browser supported by DOM createAttribute() method are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- HTML | DOM contains() Method
- HTML | DOM getAttribute() Method
- HTML | DOM execCommand() Method
- HTML | DOM addEventListener() Method
- HTML | DOM isDefaultNamespace() Method
- HTML | DOM getNamedItem() Method
- HTML | DOM getElementsByClassName() Method
- HTML | DOM Storage key() Method
- HTML | method Attribute
- HTML | DOM getElementById() Method
- HTML | DOM hasFocus() Method
- HTML | DOM removeChild() Method
- HTML | DOM focus() Method
- HTML | DOM replaceChild() Method
- HTML | DOM open() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



