Is there a command similar to VB6's set focus for text boxes in html? :p
<input type="text" name="text">
Thanks for your time 😃
You can use the JavaScript focus() method
<body onload="document.myform.text.focus();">
Cool. Ill give it a try. Thanks 😃