Answers for "set attr javascript"

9

javascript setattribute

element.setAttribute(<name>, <value>);
// ex
var aElement = document.querySelector("a"); 
aElement.setAttribute("href", "https://isitchristmas.com/"); 
// same as <a href="https://isitchristmas.com/"></a>
Posted by: Guest on May-26-2020
14

set attribute javascript

Element.setAttribute(name, value);
Posted by: Guest on March-02-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

Code answers related to "Javascript"

Browse Popular Code Answers by Language