I have html like this
<input id="paymentNumber" type="text" class="form-control input-sm bot-buffer" placeholder="Payment Number">
but when i try to get html tag in jquery like this $('#paymentNumber')
it is returning me jquery object instead of html tag of this specific id.
But although i can get the html tag like this $('#paymentNumber')[0]
This issue wasn't appeared before today, I always get html tag like this but my question is why it is making every html element a jquery object.
Is it some update in jquery or in console or something else?