Answers for "how to add attribute in html by javascript"

7

javascript add attribute

var element = document.getElementById('btnBuild');
element.setAttribute("disabled", "disabled");
Posted by: Guest on June-23-2021
2

add attribute to element

//This is for creating an attribute with setAttributeNode
<script>
var f = document.querySelector("#menu-item-16 > a");// Get the <a> element
var c = document.createAttribute("target");// Create a "target" attribute
c.value = "_blank"; // Set the value of the target attribute
f.setAttributeNode(c); // Add the target attribute to <a>
</script>

//With setAttribute
<script>
let e = document.querySelector("#menu-item-16 > a");
e.setAttribute("target", "_blank");
</script>
Posted by: Guest on September-19-2021
1

put new attribute on html tag using javascript

// Here's what you do for the style attribute
span.setAttribute("style", "width:110%;float:center;left-margin:-10px;top-margin:-10;");
Posted by: Guest on August-06-2020

Code answers related to "how to add attribute in html by javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language