Answers for "change attribute dom manipulation"

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
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 "change attribute dom manipulation"

Code answers related to "Javascript"

Browse Popular Code Answers by Language