Try myJQueryElement.get(0)
or myJQueryElement[0]
. (get()
is most useful when you need negative indices, for example, as described in the documentation for get()
.)
Try myJQueryElement.get(0)
or myJQueryElement[0]
. (get()
is most useful when you need negative indices, for example, as described in the documentation for get()
.)