VCLICK event (or touch) does not work with fieldset
Hello,
I have a problem, here is my code:
- d.sorter = $(list).closest(":jqmData(role='page')").find(".listview-sorter");
- d.sorter.delegate(".ui-radio", "vclick", function(t) {
- // DO STH...
- });
But it does not work, event is never fired... Same comes with "touch" event, only "click" event works, which is not enough for me since I develop it for mobile.
I can't bind events to .ui-radio elements directly since they are not yet initialized (returns length 0).
Any idea how to make it work?