ONFOCUS and ONBLUR attributes for LABEL elementsONFOCUS and ONBLUR events for LABEL controlsONFOCUS&hspec; ONFOCUSONBLUR&hspec; ONBLURLABEL&hspec; LABELDominique KilmanColin KotelesUsing the keyboard or an assistive technology that emulates the keyboard, move focus to the input control label to trigger the onFocus event.Using the keyboard or an assistive technology that emulates the keyboard, move focus off the input control label to trigger the onBlur event.
A red star appears in the box when the input button label receives focus.The red star disappears when the input button label loses focus.
function focusTest (img)
{
document.redStar.src = img
}
function blurTest (img)
{
document.redStar.src = img
}