Answers for ".setattribute()"

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
2

html change attribute

element.setAttribute(name, value);


var d = document.getElementById("d1"); 
d.setAttribute("align", "center");
Posted by: Guest on July-21-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
0

setattribute

Element.setAttribute(name, value);
Posted by: Guest on January-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language