We found that this code works on a PC with: IE, Safari and FireFox. However on an iPad or iPhone with Safari it does not auto focus on a textbox. We cannot touch the screen and click the textbox, we need the auto focus. Any tips here?
thanks!
<script language='JavaScript'>
<!--
function SetFocus()
{
document.form1['txtCode'].focus();
}
window.onload = SetFocus;
// -->
</script>
Try This