I have the following html:
<form novalidate="" id="loginform" action="" method="post">
<input type="hidden" name="c" id="c" value="abc">
<input type="hidden" name="initiation" id="initiation" value="test1">
<input type="hidden" name="rmo" id="rmo" value="test2">
................
I want to select all the input elements, but when I enter:
$("input")
In the chrome devtools console, I only get the first element:
<input type="hidden" name="c" id="c" value="abc">
what can I enter to get an entire list of the input elements?