I'm using jquery 1.8.3 and I am doing a .live call
   $('.ui-state-default').live('click', function(e) {
        $(".upload").show();
    });
Using my iPhone iOS 6.1 I cannot click on this dom element.
Why doesn't iOS understand .live?
I switched my code around to this.
$('.ui-state-default').bind('click', function(e) {
    $(".upload").show();
});
But now I have another issue, is there a way to make iOS understand the first piece of code with .live?
 
     
    