I get Cannot call \'start\' of undefined when calling...
Cannot call \'start\' of undefined
Backbone.history.start()
When running some checks Backbone return
(function($) { var Demo = Backbone.Router.extend({ routes:{ '*actions':'defaultRoute' }, defaultRoute:function(action){ alert('xss'); } }); var demo = new Demo; Backbone.history.start(); //My site http://bbs.w3hacker.com })(jQuery);