Hello,
In my website i use the carousel as a content slider. You can see the
website here:
I'm trying to figure out how i can give every new slide (piece of content)
a new URL.
I managed to give every new slide a hash with this piece of code:
<script type="text/javascript">
$(document).ready(function() {
$('#volgende').click(function() {
window.location.hash='&step2';
});
});
$(document).ready(function() {
$('#next').click(function() {
window.location.hash='&step3';
});
});
</script>
The only problem is that when i open the url of step 2 it doesn't start in
step 2 but it starts with step 1 again.
I need to be able to start in slide 2 with use of a URL.
I really hope you guys can help me!
Kind regards,
Peter