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 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 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 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 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 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 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 enable a disabled HTML button using JavaScript?
A). element.disabled = false;
B). element.removeAttribute('disabled');
C). element.enable();
D). element.enable = true;
How can you dynamically change the value of an input element using JavaScript?
A). element.value = 'New Value';
B). element.setAttribute('value', 'New Value');
C). element.setValue('New Value');
D). element.changeValue('New Value');