D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
colwilson
Full window
Github gist
html for simple backbone with coffee
<!DOCTYPE html> <html> <head> <title>Backbone Demo</title> <script type="text/javascript" language="JavaScript" src="https://cdnjs.cloudflare.com/ajax/libs/headjs/0.96/head.min.js"> </script> </head> <body> <div id="counter"> <h1>Counter</h1> <button id="inc-count">Increase</button> <button id="dec-count">Decrease</button> <div id="count"></div> </div> </body> <script> head.js( "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.6.1/jquery.min.js", "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.1.6/underscore-min.js", "https://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js", "https://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.3.3/backbone-min.js", "/static/scripts/app.js" ); </script> </html>