hobodave (owner)

Revisions

gist: 220840 Download_button fork
public
Public Clone URL: git://gist.github.com/220840.git
Embed All Files: show embed
JavaScript #
1
2
3
4
5
6
7
8
9
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)
}