Hi to all,
I use this code for intercept a radio-button click:
- $('#radio-1').live('click', function(){
- console.log("Clicked!");
- });
This work correctly if I add the
- data-role="none"
at the input field:
- <input type="radio" name="radio-1" id="radio-1" value="1" data-role="none" />
but, so, I haven't the jQueryMobile theming applied...
I don't undertand this behavior: there is a system for resolve this problem?
thanks,
David