$("#<%= csiRadioButtonList.ClientID %>").live('change', function () {
var radChecked = $("[id*=csiRadioButtonList] input:checked");
if (radChecked.next().text() == "selected item1")
{
alert(radChecked.next().text());
}
});
});
here this function $("#<%= csiRadioButtonList.ClientID %>").live('change', function ()
fired when any radio button checked.its works well so that the above function
only fires when radio button checkd or clicked not that the text is clicked.
here radChecked gets the item checked.then radChecked.next().text() gets
the text selected.
hope it helps you very very much.