Is get() necessary to access std JavaScript properties?
For example, I have the following piece of code:
if ($("#selPayment").get(0).selectedIndex === 3) {
I have found I cannot access the selectedIndex property unless I preceed by get(0). Am I missing a simpler way of getting at not jQ properties from a jQ object?
Many thanks ~