diff --git a/js/jquery.mobile.forms.checkboxradio.js b/js/jquery.mobile.forms.checkboxradio.js index 094a1fa8..f1567eff 100644 --- a/js/jquery.mobile.forms.checkboxradio.js +++ b/js/jquery.mobile.forms.checkboxradio.js @@ -75,7 +75,10 @@ $.widget( "mobile.checkboxradio", $.mobile.widget, { input.prop( "checked", inputtype === "radio" && true || !input.prop( "checked" ) ); // trigger click handler's bound directly to the input as a substitute for - // how lable clicks behave normally in the browsers1 + // how label clicks behave normally in the browsers + // TODO: it would be nice to let the browser's handle the clicks and pass them + // through to the associate input. we can swallow that click at the parent + // wrapper element level input.triggerHandler( 'click' ); // Input set for common radio buttons will contain all the radio