w3resource

jQuery: Change the font weight and color of paragraphs on mouseenter and mouseleave

jQuery Fundamental - II : Exercise-68

Change the font weight and color of paragraphs on mouseenter and mouseleave.

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>Change the font weight and color of paragraphs on mouseenter and mouseleave.</title>
</head>
<body>
<p>Move the mouse over this and next pragraphs.</p>
<p>Web development tutorials</p>
</body>
</html>

JavaScript Code:

$( "p" )
.on( "mouseenter", function() {
$( this ).css({
"background-color": "red",
"font-weight": "bolder"
});
})
.on( "mouseleave", function() {
var styles = {
backgroundColor : "#ded",
fontWeight: ""
};
$( this ).css( styles );
});

See the Pen jquery-fundamental-exercise-68 by w3resource (@w3resource) on CodePen.


Contribute your code and comments through Disqus.

Previous: Click a word in the paragraph and highlight it.
Next: Increase the size of a division when you click it.

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.