Answer & Solution
$('div').addClass('highlight');
elements?
<div>
elements?
$('div').addClass('highlight');
Which jQuery method is used to change the width of all <div>
elements to 300 pixels?
A). $('div').width('300px');
B). $('div').setWidth('300px');
C). $('div').css('width', '300px');
D). $('div').style('width', '300px');
How to change the font color of all <span>
elements to blue using jQuery?
A). $('span').fontColor('blue');
B). $('span').color('blue');
C). $('span').css('color', 'blue');
D). $('span').style('color', 'blue');
How to change the font size of all elements to 16 pixels using jQuery?
A). $('span').style('font-size', '16px');
B). $('span').fontSize('16px');
C). $('span').css('font-size', '16px');
D). $('span').font('16px');
Which jQuery method is used to change the background color of all paragraphs to yellow?
A). $('p').css('background-color', 'yellow');
B). $('p').style('background-color', 'yellow');
C). $('p').bgColor('yellow');
D). $('p').background('yellow');
How to remove the class 'hidden' from all elements with the class 'element' using jQuery?
A). $('.element').removeClass('hidden');
B). $('.element').remove('hidden');
C). $('.element').deleteClass('hidden');
D). $('.element').removeClassName('hidden');
Which jQuery method is used to change the opacity of all <div>
elements to 0.5?
A). $('div').setOpacity(0.5);
B). $('div').opacity(0.5);
C). $('div').css('opacity', 0.5);
D). $('div').opacity = 0.5;
Which jQuery method is used to change the height of all <div>
elements to 200 pixels?
A). $('div').height('200px');
B). $('div').setHeight('200px');
C). $('div').css('height', '200px');
D). $('div').style('height', '200px');
Which jQuery method is used to set the value of the title attribute to 'New Title' for all elements?
A). $('a').attr('title', 'New Title');
B). $('a').title('New Title');
C). $('a').setAttribute('title', 'New Title');
D). $('a').titleAttr('New Title');
How to change the alt attribute of all <img>
elements to 'New Image' using jQuery?
A). $('img').alt('New Image');
B). $('img').setAttribute('alt', 'New Image');
C). $('img').attr('alt', 'New Image');
D). $('img').setAttr('alt', 'New Image');
Which jQuery method is used to change the HTML content of all <div>
elements?
A). New paragraph$('div').innerHtml('
B). New paragraph$('div').html('
C). New paragraph$('div').innerHTML('
D). New paragraph$('div').setContent('
Copyright © RVR Innovations LLP 2025 | All rights reserved - Mytat.co is the venture of RVR Innovations LLP