w3resource

jQuery: Retrieve the stored value from the division element

jQuery Fundamental - II : Exercise-70

Retrieve the stored value from the division element.

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>Retrieve the stored  value from the div element.</title>
</head>
<body>
<div>
My favorite colors are
<span></span>
and
<span></span>
</div>
</body>
</html>

JavaScript Code :

$( "div" ).data( "test", { first: "Red", last: "Green." });
$( "span:first" ).text( $( "div" ).data( "test" ).first );
$( "span:last" ).text( $( "div" ).data( "test" ).last );

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


Contribute your code and comments through Disqus.

Previous: Increase the size of a division when you click it.
Next: Display a message to the dblclick event on all paragraphs on a page.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/jquery-exercises/2/jquery-fundamental-exercise-70.php