Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.9.1.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<ul>
    <li>
        <input type="checkbox" value="300" />
        <label>
          At vero consecur <span class="price">300</span>
        </label>
    </li>
    <li>
        <input type="checkbox" value="450" />
        <label>
          lorem ipsum <span class="price">450</span>
        </label>
    </li>
    <li>
        <input type="checkbox" value="850" />
        <label>
          solor sit amet <span class="price">850</span>
        </label>
    </li>
    <li>Total Sum <span class="price">0</span></li>
</ul>
</body>
</html>
 
$('.price').each(function( index ) {
      alert( index + ": " + $(this).text() );
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers