Advertisement
Guest User

Untitled

a guest
Oct 16th, 2012
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var orderTotal;
  2.  
  3. $(function() {
  4.   $('#order_quantity').click(orderTotal);
  5.   return orderTotal();
  6. });
  7.  
  8. orderTotal = function() {
  9.   var price, quantity, total;
  10.   quantity = $('#order_quantity').val();
  11.   price = $('#ticket-price').data('url');
  12.   total = quantity * price;
  13.   $('.stripe-button').attr('amount', total);
  14.   return alert(total);
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement