How can you hide an HTML element using JavaScript?
A). element.style.display = 'none';
B). element.style.visibility = 'hidden';
C). element.visible = false;
D). element.style.opacity = 0;
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';
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 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 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 change the style (CSS) of an HTML element using JavaScript?
A). element.style.property = 'value';
B). element.setAttribute('style', 'property: value;');
C). element.changeStyle('property: value;');
D). element.setStyle('property: value;');
How can you remove an attribute from an HTML element using JavaScript?
A). element.removeAttribute('attributeName');
B). element.attributeName = '';
C). element.removeAttribute('attributeName', 'value');
D). element.attributeName.remove();
How can you set the text alignment of an HTML element using JavaScript?
A). element.style.textAlign = 'alignment';
B). element.style.align = 'alignment';
C). element.textAlign = 'alignment';
D). element.align = 'alignment';
How can you set the background color of an HTML element using JavaScript?
A). element.style.backgroundColor = 'color';
B). element.style.background = 'color';
C). element.background = 'color';
D). element.style.color = 'color';
How can you disable an HTML button using JavaScript?
A). element.disabled = true;
B). element.setAttribute('disabled', 'disabled');
C). element.disable();
D). element.disable = true;