Home » Backbone.js view.setElement()

Backbone.js view.setElement()

by Online Tutorials Library

Backbone.js view.setElement()

The Backbone.js setElement method is used to apply backbone view to a different DOM element. It also creates a cached $el reference and displaces the view’s delegated events from the old element to the new one.

Syntax:

Parameter explanation:

element: It specifies an element that can be changed from existing element to different element.

Let’s take an example.

See this example:

You may also like