I have a page that uses boostrap carousel. Every slide displays 4 divs. From every div we can go to page with specifications about the product. This page has a button that uses:
$('.goback__button').click(function(){
window.history.back();
return false;
})
to return to previous page with slider. Problem is that i want to go back to the same slide (active slide, active item) when i click on this button. Now it's redirects to page with the first slide active.
If you want to do it in server side you can pass a Get parameter in the request and then in the HTML select the item
If you want to do it directly in JavaScript, you have to use a hash or a get parameter (and parse the params), the easy way is using the hash for example:
You would have to write the code that will control the hash value and then modify the active item