August 1999
Intermediate to advanced
1488 pages
72h 53m
English
onBlur="command"
The onBlur property is an event handler for the Radio object that notifies you when the focus is removed from a radio button.
Listing 7.439 shows how the onBlur event handler is used to detect when the focus is removed from the specified radio button.
<html> <head> <title> Example of the Radio onBlur event handler</title> </head> <body> <script language="JavaScript"> <!--Hide function showChange(){ document.form1.text1.value = "Focus removed from Radio Button"; } // End Hide ---> </script> <form name="form1"> Click the radio button first, then click in the text area. <br><br> ... |
Read now
Unlock full access