Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 22, 2014 17:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save devdays/4205b1d0c9b1ef981533 to your computer and use it in GitHub Desktop.
Save devdays/4205b1d0c9b1ef981533 to your computer and use it in GitHub Desktop.
jQuery Filter Example
var games = $(myData.products).filter(function (index) {
return myData.products[index].category == "Game";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment