According to the Web Content Accessibility Guidelines, in order for a website to be considered accessible, you should be able to use a keyboard for all functionality of the content:
All functionality of the content is operable through a keyboard interface
I'm using Owl Carousel 2, and added arrows and linked them like so:
$('.carousel-left-arrow').click(function () {
owl.trigger('next.owl.carousel');
});
But those arrows are not accessible using the keyboard, only the mouse. How can I make them accessible?