D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jo
Full window
Github gist
Backbone Current Model Experiments
<!DOCTYPE html> <html lang=en> <head> <meta charset=utf-8 /> <title>Backbone Current Model Experiments</title> <meta name=author content="Johannes J. Schmidt, TF, Berlin"> <meta name=viewport content="width=device-width,user-scalable=no"> <meta name=apple-mobile-web-app-capable content=yes> <link href=style.css rel=stylesheet charset=utf-8> <script src=https://code.jquery.com/jquery-1.7.2.min.js></script> <script src=https://documentcloud.github.com/underscore/underscore-min.js></script> <script src=https://backbonejs.org/backbone-min.js></script> <script src=app.js></script> <script src=page.js></script> <script src=pages.js></script> <script src=list.js></script> <script src=show.js></script> <script src=router.js></script> </head> <body> <h1>Backbone Current Model Experiments</h1> <div id=list></div> <div id=show></div> <script> new Pages.Router(); Backbone.history.start() </script> </body> </html>