In IE11 when a slide element contains a link (eg a navigation item), the link clicked does nothing. I got as far as capturing the click in IE11 but would really like it actually go to the link. Is there a solution for this?
var elem = document.querySelector('#flick');
var flkty = new Flickity( elem, {
// options
cellAlign: 'left',
freeScroll: false,
prevNextButtons: false,
pageDots: false,
contain: true,
draggable: true
});
elem.addEventListener( 'click', function( event ) {
// only link clicks
if ( !matchesSelector( event.target, 'a' ) ) {
console.log("link clicked")
return;
}
In IE11 when a slide element contains a link (eg a navigation item), the link clicked does nothing. I got as far as capturing the click in IE11 but would really like it actually go to the link. Is there a solution for this?