I have a form with 3 input box and all the input box does not have id, name field in it. So if i enter value in it, How can i check the value of input box without id and name field using javascript
<form id='a' action='' >
<input type='text' value='' />
<input type='text' value='' />
</form>
This is the code in html and i want to have the value of input box using javascript. Can i do that?