Home » Backbone.js view.$()

Backbone.js view.$()

by Online Tutorials Library

Backbone.js view.$()

The Backbone.js $(jQuery) method is used to run queries scoped within the view’s element. After using this, you don’t have to use model ids within your query to fetch specific elements in a list, and can rely much more on HTML class attributes. It is same as running: view.$el.find(selector)

Syntax:

Parameter explanation:

selector: It specifies the different types of selectors i.e. id or class.

Let’s take an example.

See this example:

You may also like