Hey guys. How do I call an Off-Canvas Element by pressing a button?
I found this thread but am sort of confused about how to implement this!
jQuery(function($){
$( document).on(‘click’, ‘.bookNow’, function(e) {
e.preventDefault();
$(’.robertCalendar’).click();
});
});
Which class bookNow should be?
Thanks.