$ (selector) JQuery
public
Returns a jQuery object for this view's element. If you pass in a selector string, this method will return a jQuery object, using the current element as its buffer.
For example, calling view.$('li')
will return a jQuery object containing all of the li
elements inside the DOM element of this view.
Parameters:
-
selector
[String]
- a jQuery-compatible selector string
Returns:
-
JQuery
- the jQuery object for the DOM node
Please login to continue.