SimpleCart.js Example

HTML

<script src="http://jslib.dotcloud.com/fiddle-require.js"></script>
<script src="https://dl.dropbox.com/u/16759714/scripts/simpleCart.min.js"></script>
<script src="simpleCart.js"></script>

<!-- another shelf item -->
<div class="simpleCart_shelfItem">
  <h2 class="item_name"> Awesome T-shirt </h2>
<p>  <input type="text" value="1" class="item_Quantity"><br>
  <span class="item_price">$35.99</span><br>
  <a class="item_add" href="javascript:;"> Add to Cart </a></p>
</div>

<!-- another shelf item -->
<div class="simpleCart_shelfItem">
  <h2 class="item_name"> Awesome T-shirt </h2>
<p>  <input type="text" value="1" class="item_Quantity"><br>
  <span class="item_price">$35.99</span><br>
  <a class="item_add" href="javascript:;"> Add to Cart </a></p>
</div>

JavaScript

simpleCart({
    checkout: {
      type: "PayPal",
      email: "[email protected]"
    }
  });