html - javascript focus not working on load -
window.onload = function() { try{ document.getelementbyid('result').focus(); }catch(err){ } } in form div result id load when form submits , when show want focus on it. above code not working in case. please me find problem code.
jsfiddle
1. give div tab index of 0 (meaning ordered first):
<div class="result" tabindex="0" id="result"> (find out more tabindex property here.)
2. remove <script> tags:
window.onload = function() { try{ document.getelementbyid('result').focus(); }catch(err){ } } 3. use no wrap in <head> instead of onload.
Comments
Post a Comment