Skip to content

Instantly share code, notes, and snippets.

View bgando's full-sized avatar

Bianca bgando

View GitHub Profile
var Appointment = Backbone.Model.extend({});
var appointment = new Appointment();
appointment.set('title', 'My knee hurts');
var AppointmentView = Backbone.View.extend({
tagName: 'ul',
render: function(){
$(this.el).html('<li>' + this.model.get('title') + '</li>');
}
});
var appointmentView = new AppointmentView({model: appointment});