Answers for "js set name of element"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language