This was a question in a previous topic but I didn't quite understand the answer, so here is the question again.
I display radio buttons from an radioArray I built in ASP which contains a code/short desc/long desc. When someone clicks a radio button I want to do invoke a Javascript function to display the short and long desc directly below the list of radio buttons.
1. should I use onClick="return display_desc(this.selectedIndex)"
OR onchange="return display_desc(this.selectedIndex)"
2. How do I get radioArray into a
JS array for the
JS function?
Any code examples of would be very helpful since I am a novice at
JS.