Is there a way to select all input fields of type text
, email
, or tel
using just one selector?
For example, can I use the following selector:
input[type=text][type=email][type=tel]
(I am aware that this specific selector does not work)
Or do I have to separate them with commas like this:
input[type=text], input[type=email], input[type=tel]
Thank you in advance!