just add this javascript in the HTML code:
where elementId the id of the element on which the focus is to be set
<script type="text/javascript">
document.getElementById("elementId").focus();
</script>
for example, the following code will bring focus to the textbox that has the id email
<input type="text" id="email" />
<script type="text/javascript">
document.getElementById("email").focus();
</script>
No comments:
Post a Comment