$('body').bind('taphold', function (e) {
navigator.notification.alert( 'You tapped and held!' );
//e.stopImmediatePropagation();
return false;
} );
$('body').bind('swipeleft', function (e) {
// navigator.notification.alert('You swiped left!');
$('#calendar').fullCalendar('next');
//e.stopImmediatePropagation();
return false;
});
$('body').bind('swiperight', function (e) {
// navigator.notification.alert('You swiped right!');
$('#calendar').fullCalendar('prev');
//e.stopImmediatePropagation();
return false;
});
Any help with this appreciated.