Faizy
Faizy

Reputation: 69

Swiper Slider url change on click image

Please, anyone, give me solution for image URL change on click! I am using swiper for image gallery

I am want to URL

http://idangero.us/swiper/demos/25-hash-navigation.html#slide2

to

http://idangero.us/swiper/demos/slide2

can you give me some solution, how i can do this...

Upvotes: 1

Views: 2265

Answers (1)

RDardelet
RDardelet

Reputation: 574

Url-rewriting can be acheived by using the window object in javascript like so:

window.history.pushState(“object or string”, “Title”, “/new-url”);

Further reference on this : Article on spoiledmilk.com

Upvotes: 1

Related Questions