Skip to content

Instantly share code, notes, and snippets.

@JeroenVinke
Created February 27, 2016 18:36
Show Gist options
  • Select an option

  • Save JeroenVinke/f366610c8c464fb20fc0 to your computer and use it in GitHub Desktop.

Select an option

Save JeroenVinke/f366610c8c464fb20fc0 to your computer and use it in GitHub Desktop.
var arr = [{
name: 'a'
}, {
name: 'b'
}]
$.each(arr, function(index, obj) {
if(obj.name == 'a') {
// iets doen
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment