Uncaught TypeError: Waiting for a function in instanceof check

I am experimenting with Backbone.js, and just trying to get the messages that appear on the console screen. As always, every time I do this, an error appears (see below)

Uncaught TypeError: Expecting a function in instanceof check, but got [object Object] backbone.js:1032 _.extend.setElement backbone.js:1032 _.extend._ensureElement backbone.js:1104 Backbone.View backbone.js:986 child backbone.js:1531 (anonymous function) pageLoader.js:19 (anonymous function) 

Here is the javascript file

 (function ($){ window.PageLoader = Backbone.View.extend({ el: $("section"), events: { "": "initialization", "click #aboutUs" : "aboutUs", }, initialization: function(){ console.log('pageLoader.js initialized\nHome page rendered'); }, aboutUs:function(){ console.log('About us page rendered.'); } }); var pageLoader = new PageLoader(); //pageLoader.initialization(); //pageLoader.aboutUs(); })(jQuery); 

HTML is also here.

 <html> <head> <link rel="stylesheet" type="text/css" href="css/main.css"> <meta /> <meta /> <title>Bus tours and tows</title> </head> <body> <div id="centerWrapper"> <header> <h1>So and so Bus tours and tows</h1> <header/> <nav> <ul> <li><a href="">Home</a></li> <li><a href="#aboutUs">About us</a></li> <li><a href="">Tours</a></li> <li><a href="">Tows</a></li> <li><a href="">Schedule</a></li> <li><a href="">Contact</a></li> </ul> </nav> <section></section> <footer> &#169; Of So and so bus tours and tows. <br /> <i>Questions regarding the construction of the website, please email</i> <a href="mailto: joshua.villahermosa@joshvee.com ">Web Master</a> </footer> <div id="jsFilesAndDepend"> <!-- --> <!-- Filese that are dependant--> <script src="js/dependencies/underscore.js"></script> <script src="js/dependencies/backbone.js"></script> <script src="js/dependencies/jquery-1.10.1.js"></script> <script src="js/pageLoader.js"></script> <script src=""></script> <script src=""></script> </div> </div> </body> </html> 

I am new to Backbone.JS. Thanks for helping.

+7
source share
1 answer

You need to load jQuery in front of the base,

  <script src="js/dependencies/underscore.js"></script> <script src="js/dependencies/jquery-1.10.1.js"></script> <script src="js/dependencies/backbone.js"></script> 

You also cannot define pairs of values ​​for a pair of events,

  events: { // "": "initialization", <- this is invalid. "click #aboutUs" : "aboutUs", }, 
+9
source

All Articles