Reputation: 69
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
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