I have an array that outputs inputs, with a type of number, but i cant seem to get the selector to find it. Is it not supported?
$('#container :text').each(...
$('#container input:number').each(...
$('#container :number').each(...
None of them find the input values. What am i missing?
I also looked at the selector list on the jQuery site, and did not see anything for newer HTML5 input types.
jQuery currently does not support some pseudo-selectors. You will instead need to base your query off of the attributes of the target element(s), as demonstrated below.
As of jQuery 1.9.0, these are the following pseudo-selectors stored under
jQuery.expr[":"]:You can extend this object and provide your own custom selectors if you like: