ZVON > References > DOM2 Reference

focus (method )

Owning interface and usage:  
HTMLAnchorElement.focus()

Member of these other interfaces:  
none

Description:  
Gives keyboard focus to this element.

Parameters:  
none

Returns:  
nothing

Exceptions:  
none


Example:
Source:
   <A id="aLink" href="#">a test link</A>
JavaScript:
  function focusLink() {
    var main = document.getElementById('aLink');
    main.focus();
  }
  function blurLink() {
    var main = document.getElementById('aLink');
    main.blur();
  }
Try it:    
See it: