it is possible , but you must know number of your input tags in your html document, for example:
Code:
<html> <input type="text" /> <input type="text" /> <input type="text" /> </html> <script> var firstInput = document.getElementsByTagName('input')[0]; </script>
Leave a comment: