You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by Apache Wiki <wi...@apache.org> on 2006/10/05 03:37:36 UTC

[Myfaces Wiki] Update of "Radio Buttons and Browsers" by PaulSpencer

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Myfaces Wiki" for change notification.

The following page has been changed by PaulSpencer:
http://wiki.apache.org/myfaces/Radio_Buttons_and_Browsers

New page:
Browsers have slightly different behavior. Some of those differences are documented. 

=== IE 6 ===
 * The onChange script is executed when the field is left, i.e. you click somewhere else.  If the script is to be executed is {{{submit();}}} and you want the script to be executed when the button is clicked, you may want to use onClick instead.
 * The onClick script is executed when the radio button is clicked.

=== Firefox 1.5 ===
 * The onChange script is executed when the radio button is clicked. If the script is to be executed is {{{submit();}}} and IE browses will also be used, you may want to use onClick instead.
 * The onClick script is executed when the radio button is clicked.