It is true that using your own properties available in DOM elements, instead of jQuery methods.
With get() (docs), you extract the DOM element from the jQuery object, and then valueset your new value using your own property .
The equivalent that I would prefer to use would be:
$("#element")[0].value = v;
... that would do the exact same thing, but do it directly through the index of the DOM element.
source
share