A Backbone.js Playground

A simple playground for learning backbone.js without having to install or configure anything yourself.

by wookiehangover

HTML

<script src="http://documentcloud.github.com/underscore/underscore.js"></script>
<script src="http://documentcloud.github.com/backbone/backbone.js"></script>
<script src="https://getfirebug.com/firebug-lite.js"></script>

JavaScript

var BaseView = Backbone.View.extend({
  _open: function(){
    // shared code in here...
  }
});

var TodoView = BaseView.extend({
  open: function(){
    // custom stuff to this view instance

    // then the generic, application wide _open()
    this._open();
  }
});