Answers for "JavaScript 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
14

set attribute javascript

Element.setAttribute(name, value);
Posted by: Guest on March-02-2020
0

js setattribute

const link = document.querySelector('a');

console.log(link.getAttribute('href'));
link.setAttribute('href', 'https://yandex.ru');
link.innerText = 'The Next Link';

const mssg = document.querySelector('p');

console.log(mssg.getAttribute('class'));

mssg.setAttribute('class', 'success');
mssg.setAttribute('style', 'color: green;');
Posted by: Guest on July-19-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language