Saved Bookmarks
| 1. |
What Is “el” Property Of Backbone.js View? |
|
Answer» The “EL” PROPERTY references the DOM OBJECT created in the browser. Every Backbone.js VIEW has an “el” property, and if it is not defined, Backbone.js will construct its own, which is an EMPTY div element. The “el” property references the DOM object created in the browser. Every Backbone.js view has an “el” property, and if it is not defined, Backbone.js will construct its own, which is an empty div element. |
|