Deeplinking on flexslider

134 Views Asked by At

How to create a deeplinking on flexslider just like the royal slider?

When I said deeplinking, if you click the thumbnail the url on the browser will going to chnage.. it is like a pointer for the slider...

thanks in advance.

1

There are 1 best solutions below

0
On

You will want to use HTML5's History API, specifically history.pushState(). Then hook into the click event / slide display function and do something like

slide.addEventListener('click', function (event) {
  event.preventDefault();
  var href = this.dataset.href;
  history.pushState(null, null, href);
}, false);