Answers for "js set html attribute"

14

set attribute javascript

Element.setAttribute(name, value);
Posted by: Guest on March-02-2020
12

setAttribute()

element.setAttribute(name, value);
element.setAttribute("style", "background-color: red;");
Posted by: Guest on April-19-2020
1

set attribute in javascript

//Fetch id from html
var a = document.getElementById("id");

//variable.setAttribute("Attributes","Properties:Values")
a.setAttribute("style", "visibility:hidden;");
Posted by: Guest on May-22-2021
2

set property dom javascrpt

document.getElementsByTagName("H1")[0].setAttribute("class", "democlass");
Posted by: Guest on April-17-2020
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 "Javascript"

Browse Popular Code Answers by Language