In HTML below, I want to retrieve the value of the all <b> tags using JavaScript or jQuery
<html>
<head>
</head>
<body>
<span id=":zz" class="adl">
<b>2</b>
<b>of </b>
<b>143 </b>
</span>
<body>
</html>
Can I retrieve all <b> tag values using class name in jQuery or JavaScript?
$('.adl b')to access the values