var ShippingView = FormView.extend({ el: "#shipping", events: { }, initialize: function(){ this.$form = this.$("form") this.$msg = this.$(".msg") this.address = new AddressView ({ parent: this }) }, show: function(){ app.footer.show("SAVE", "CANCEL") document.body.className = "shipping" }, save: function(){ }, })