Skip to content

Instantly share code, notes, and snippets.

@hobodave
Created October 28, 2009 21:06
Show Gist options
  • Select an option

  • Save hobodave/220840 to your computer and use it in GitHub Desktop.

Select an option

Save hobodave/220840 to your computer and use it in GitHub Desktop.
function updateTotalCost() {
var total = 0.00;
$('shoppingCart').select('td.cost').each(function(td) {
total += parseFloat(td.innerHTML)
})
total_cell = $('total_cell')
total_cell.update(total.toFixed(2))
new Effect.Highlight(total_cell)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment