With following code I can not click on labels in jqtouch (on iphone simulator and iphone itself):
thanks to @Ivan I found better solution:
$('label[for],input[type="radio"]').bind('click', function(e) { e.stopPropagation(); });
Additionally it fixes radio buttons.
The only downside is - it stops propagation, but in my case it is ok.