Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

jquery selector input by type

//jquery selector input by type

$(":text") 			// all imput type text 
$(":password") 		// all input type password 

//more
https://www.w3schools.com/jquery/jquery_ref_selectors.asp

$("input[type=checkbox]");
$("input[type=text]");
$("input[type=number]");
 
PREVIOUS NEXT
Tagged: #jquery #selector #input #type
ADD COMMENT
Topic
Name
4+1 =