Skip to content

Instantly share code, notes, and snippets.

@robzolkos
Created November 16, 2011 05:17
Show Gist options
  • Save robzolkos/1369336 to your computer and use it in GitHub Desktop.
Save robzolkos/1369336 to your computer and use it in GitHub Desktop.
Coffeescript function
calcMenuPrice: ->
qty = $('#order_qty').val()
price = $('#order_qty option:selected').data("price")
amt = qty * price
ttl = '$' + amt.toFixed(2)
$('span.price').text(ttl)
jQuery ->
$('#order_qty').change ->
calcMenuPrice()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment