I have seen examples of
$(":input[type='text']").wijtextbox();
and also
$("input[type='text']").wijtextbox();
Do I need to use the “:”. I’m familiar with the period and hash selectors but not the colon.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
inputdoesn’t grab all the form objects likeselectandtextarea, that’s why they came out with:inputThe
:inputselector basically selects all form controls.http://api.jquery.com/input-selector/