Answer & Solution
$('h2').css('font-weight', 'bold');
<h2>
elements to bold?
$('h2').css('font-weight', 'bold');
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 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');
How to change the text content of all <h1>
elements to 'New Heading' using jQuery?
A). $('h1').html('New Heading');
B). $('h1').textContent = 'New Heading';
C). $('h1').text('New Heading');
D). $('h1').innerText('New Heading');
How to change the color of all paragraphs to red using jQuery?
A). $('p').style('color', 'red');
B). $('p').css('color', 'red');
C). $('p').color('red');
D). $('p').setColor('red');
How to remove the href attribute from all anchor elements using jQuery?
A). $('a').removeAttr('href');
B). $('a').removeAttr('href');
C). $('a').deleteAttr('href');
D). $('a').removeAttribute('href');
How to change the src attribute of an<img>
element using jQuery?
A). $('img').attr('src', 'newimage.jpg');
B). $('img').src = 'newimage.jpg';
C). $('img').setAttribute('src', 'newimage.jpg');
D). $('img').srcAttr('newimage.jpg');
How to add the class 'active' to all<li>
elements within a<ul>
using jQuery?
A). $('ul li').setAttribute('class', 'active');
B). $('ul li').add('active');
C). $('ul li').addClass('active');
D). $('ul li').setAttribute('class', 'active');
How to change the font family of all<p>
elements to 'Arial' using jQuery?
A). $('p').style('font-family', 'Arial');
B). $('p').fontFamily('Arial');
C). $('p').css('font-family', 'Arial');
D). $('p').font('Arial');
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');