The problem is with click events that don't bubble on the li element in safari.
You can force the browser to behave either by setting the cursor property to a pointer in css, or by binding the event handler to the element.
CSS
[data-slide-to] {
cursor: pointer;
}
Javascript
$('[data-slide-to]').on('click', $.noop);
source
share