Level 122
jquery is loaded at the bottom of the default template in app.js
Your jquery code needs to come AFTER inclusion of that file.
If you have not used the default app.js then you need to include jquery yourself.
1.$(document).ready(function () {
$('.home').click(function () {
$.get('/post',function () {
});
});
});
this code give me error that $ is not defined at line 1 why
Please or to participate in this conversation.