As far as I know, you have no restrictions on using onclick evente with jquery in shortcut. If you have an identifier, you can use it. Say you have the following html:
<label for="foo" id="whatever1">foo</label><input type="radio" name="radiogroup_0" value="foo" > <label for="bar" id="whatever2">bar</label><input type="radio" name="radiogroup_1" value="bar" >
In your jquery you can add:
$('#whatever1').click( function(){
The same for the other label of the radio book
$('#whatever1').click( function(){
Hope this helps. Louis M.
source share