w3resource

jQuery: Set background-image using jQuery CSS property

jQuery Practical exercise Part - I : Exercise-32

Set background-image using jQuery CSS property.

Sample Solution:

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Set background-image using jQuery CSS property.</title>
</head>
<body>
</body>
</html>

JavaScript Code:

$('body').css('background-image',
 'url("https://www.w3resource.com/includes/jquery-images/jquery.gif")');

See the Pen jquery-practical-exercise-32 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Add options to a drop-down list using jQuery.
Next: Delete all table rows except first one using jQuery.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.