What's the difference between jQuery $ and this.$ in Backbone.js View? in a View, I listened to a collection's reset event to empty an element by using below code
//code in View
this.$("#the_id").empty();
however it did not empty my element, then I changed the code to
$("#the_id").empty();
this time it works. so, why this.$ does not do the work?