Is there special html code to make it so that the cursor autmatically ends up in a certain input field? Thanx!
Jason R.
say, this input has ID = 'id123';
Then, set for BODY tag onLoad="document.getElementById('id123').focus();"
To make it more standard (since getElementByID is not supported by old browsers)
onLoad="document.name_of_the_form.nome_of_the_field.focus();"
not standard, but supported. getElementById() is rather standard, you know... 🙂
But generally I agree.