I have a bunch of hidden entrances on the page ...
<input type='hidden' name='thing' value='' />;
<input type='hidden' name='thing' value='' />;
<input type='hidden' name='thing' value='' />;
Etc ...
Each input can have any value.
In jquery, what is the best way to check if one of these inputs is set to a known specific value?
thank
source
share