Hi I am struggling to make working my newbie app, It seems like my app does not have Jquery loaded have a look of my error below. I don't understand why it is not working and I have followed all the installation steps on this website.
note: I downloaded the javascriptMVC 3.3 version
- steal('can/lib/jquery.1.9.1.js',
- 'jquerypp/class',
- 'jquerypp/model',
- 'jquerypp/dom/fixture',
- 'jquerypp/view/ejs',
- 'jquerypp/controller',
- 'jquerypp/controller/route').then(
- 'mvcForNewbies1/controller/first_div.js').then (
- function($){
- $(document).ready(
- Uncaught TypeError: undefined is not a function
- function() {
- // Create a new first_div controller on the #first_div element
- $("#first_div").first_div();
- }
- )
- }
- )