I have some radio buttons
&l
$(document).ready(function(){
$( ".radioVote" ).buttonset();
$('[for^=radio]').click(function() {
var theRadioElement = $(this).prev();
alert("Button" + theRadioElement.attr('id') + " clicked. VALUE:" + theRadioElement.val());
});
});
This example shows how to get the ID and Value when you click on a label that belongs to a jQueryUI radio.
Happy coding :)