Skip to content

Instantly share code, notes, and snippets.

@joneath
Created May 15, 2012 05:05
Show Gist options
  • Save joneath/2699259 to your computer and use it in GitHub Desktop.
Save joneath/2699259 to your computer and use it in GitHub Desktop.
Backbone event sadness
// View
Myview = Backbone.View.extend({
events: {
"click .item": "openItem"
}
openItem: function(e) {
var item = this.collection.get($(e.eventTarget).attr("data-cid"));
...
}
});
// Template
<% items.each(function(item){ %>
<h4 class="item" data-cid="<%= item.cid %>"><%= item.get("name") %></h4>
<% }) %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment