Q
How can you change the style (CSS) of an HTML element using JavaScript?

Answer & Solution

Answer: Option A
Solution:
To change the style (CSS) of an HTML element using JavaScript, you can directly modify the style property of the element. For example, element.style.property = 'value'; sets the CSS property 'property' to 'value' for the element.
Related Questions on Average

How can you set the border color of an HTML element using JavaScript?

A). element.style.borderColor = 'color';

B). element.style.border.color = 'color';

C). element.border.color = 'color';

D). element.color = 'color';

How can you change the text content of an HTML element using JavaScript?

A). element.textContent = 'New Content';

B). element.innerText = 'New Content';

C). element.innerHTML = 'New Content';

D). element.value = 'New Content';

Which JavaScript method allows you to change the value of an HTML attribute?

A). setAttribute()

B). getAttribute()

C). removeAttribute()

D). createElement()

How can you dynamically change the source (URL) of an image element using JavaScript?

A). element.src = 'newimage.jpg';

B). element.setSource('newimage.jpg');

C). element.setAttribute('src', 'newimage.jpg');

D). element.changeSource('newimage.jpg');

How can you set the font color of an HTML element using JavaScript?

A). element.style.color = 'color';

B). element.style.fontColor = 'color';

C). element.fontColor = 'color';

D). element.color = 'color';

How can you change the href attribute of an anchor (link) element using JavaScript?

A). element.href = 'https://example.com';

B). element.setAttribute('href', 'https://example.com');

C). element.setHref('https://example.com');

D). element.changeHref('https://example.com');

How can you set the border width of an HTML element using JavaScript?

A). element.style.borderWidth = 'width';

B). element.style.border.width = 'width';

C). element.border.width = 'width';

D). element.width = 'width';

How can you add an attribute to an HTML element using JavaScript?

A). element.setAttribute('attributeName', 'value');

B). element.attributeName = 'value';

C). element.attributeName('value');

D). element.attributeName.add('value');

How can you add a CSS class to an HTML element using JavaScript?

A). element.classList.add('className');

B). element.className = 'className';

C). element.setAttribute('class', 'className');

D). element.addClass('className');

How can you enable a disabled HTML button using JavaScript?

A). element.disabled = false;

B). element.removeAttribute('disabled');

C). element.enable();

D). element.enable = true;