Matches all input elements of type text.
Using this psuedo-selector like
$(':text') is equivalent to $('*:text') which is a slow selector. It's recommended to do $('input:text').Examples:
| Name | Type |
|---|
