Skip to content

Instantly share code, notes, and snippets.

@cgrusden
Created October 28, 2014 14:46
Show Gist options
  • Save cgrusden/60b2ce280b9e5a6d8a9e to your computer and use it in GitHub Desktop.
Save cgrusden/60b2ce280b9e5a6d8a9e to your computer and use it in GitHub Desktop.
5min. blah.
// http://www.zagat.com/best-restaurants/new-york
nums = $.map($('.scores > .score.cost'), function(val, i) { return($(val).text()); }); //Get all boxes w/scores
clean = $.map(nums, function(val, i) { return(/\w+/.exec(val)); }); //Get rid of $
var total=0; $.each(clean, function(val, i) { total += val }); console.log(total) //Calculate total
Total = $4,950
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment