Skip to content

Instantly share code, notes, and snippets.

@Med116
Med116 / shopping_car.js
Created April 17, 2014 21:31
shopping cart code for backbone.js
var AppRouter = Backbone.Router.extend({
routes:{
"products.html":"products"
}
});
Backbone.history.start();
var NavView = Backbone.View.extend({
el:"nav",
render: function(){
var template_html = jQuery("#nav_template").html();