jQTouch-Calendar
jQTouch-Calendar copied to clipboard
unresponsive in iOS5 with jquery mobile
if I load jquery-1.7.1.js, jqtouch-jquery.js and jqt.calendar.js everything works well
if I add jquery.mobile-1.1.0.js the calendar draws on an iphone running iOS5 but it does not respond at all to any touch action. It continues to work mac safari, including with user-agent iphone
No error in the console. I am not sure where to look for the problem.
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="cal/jqtouch/jqtouch-jquery.js" type="application/x-javascript" charset="utf-8"></script>
<script src="cal/jqtouch/jqtouch.js" type="application/x-javascript" charset="utf-8"></script>
<script src="cal/jqt.calendar.js" type="application/x-javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
var jQT = new $.jQTouch({});
$(function() {
$('#any_id').getCalendar();
});
</script>
the above works, adding the line below freezes the calendar on iphone
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>