Answers for "javascript give element attribute"

13

javascript add attribute

var element = document.getElementById('btnBuild');
element.setAttribute("disabled", "disabled");
Posted by: Guest on June-23-2021
2

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
0

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
-1

How to add attribute in a element

var e = $('<div style="display:block; float:left;"></div>');

e.attr('id', 'myid');
Posted by: Guest on April-20-2021

Code answers related to "javascript give element attribute"

Code answers related to "Javascript"

Browse Popular Code Answers by Language