Quotes help make search much faster. Example: "Practice Makes Perfect"

Tuesday, October 22, 2013

#Codeschool Backbone.js Sample Solution to Define Render



var AppointmentView = Backbone.View.extend({
  render: function() {
    var html = '<li>' + this.model.get('title') + '</li>';
    $(this.el).html(html);
  }
});

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts