Skip to content

Instantly share code, notes, and snippets.

@4bu
Created December 13, 2011 15:37
Show Gist options
  • Save 4bu/1472565 to your computer and use it in GitHub Desktop.
Save 4bu/1472565 to your computer and use it in GitHub Desktop.
var persons = new Backbone.Collection();
persons.bind("add", function(person) {
alert("Servus " + person.get("name") + "!");
});
persons.add([
{name: "Marcus"},
{name: "Maria"},
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment