I have a situation where I have three to four RadioButtonList on my web form and I want to display each selected items from these RadioButtonList within a HTML Div like this-
A/B/C/D Here "A" is selected item from RadioButtonList1,"B" from RadioButtonList2 and so on. I am able to display the result within html Div and in the same format but the result is displayed only when the last RadioButton item is selected.
But I want to display the item on selection of every RadioButtonList. i.e. when I select RADIOBUTTONLIST1 then A elements gets displayed, then when I select RadioButtonList2 item html Div should diplay "A/B" similarly when I select RadioButtonList3 item html
Div should display "A/B/C". Please guide me how can I achieve this-
My aspx page-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">< ...
Go to the complete details ...