Working on a project this morning and had some trouble finding a way to output the label for a checked radio button input control so thought I would share it in case it is of any use to someone else:
[code language="javascript"]$('input[name=myRadioButtonListName]:checked + label').text()[/code]
Always interested to hear of any alternative/improved methods of achieving the same goal?