Answers for "how to change html attribute value in javascript"

2

html change attribute

element.setAttribute(name, value);


var d = document.getElementById("d1"); 
d.setAttribute("align", "center");
Posted by: Guest on July-21-2020

Code answers related to "how to change html attribute value in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language