Is it possible to browse months in datepicker, using swipe? For example in my iPhone, when I swiperight throw calendar it will show me next month. Please help me it is very important.
I tried to do something like this, but it is not working at all.
checkIn.datepicker(
{ 
    dateFormat: 'dd-mm-yy',
    firstDay: 1,
    minDate: 0,
    beforeShow: function()
    {
        jQuery('#ui-datepicker-div').on('swiperight', function() 
        {
            alert('next month');
        });
    }
});
 
     
    