I am a newbie in html and I m trying to set autofocus on an input text field...
But this is not supported in IE... is it possible to use JS in order to solve this problem?
I am a newbie in html and I m trying to set autofocus on an input text field...
But this is not supported in IE... is it possible to use JS in order to solve this problem?
Javascript:
document.getElementById('elemID').focus();
jQuery:
$('selector').focus();
Yes you can do this with javascript
e.g.
<script type="text/javascript">
function formfocus() {
document.getElementById('element').focus();
}
window.onload = formfocus;
</script>
Where 'element' is the id of your html input.