Guest User

Untitled

a guest
Feb 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. Event.observe(window, 'load', function() {
  2. var e = $A(document.getElementsByTagName('*')).find(function(e) {
  3. return (e.tagName.toUpperCase() == 'INPUT' && (e.type == 'text' || e.type == 'password'))
  4. || e.tagName.toUpperCase() == 'TEXTAREA';
  5. });
  6. if (e) e.focus();
  7. });
Add Comment
Please, Sign In to add comment