Closed cormdog closed 12 years ago
Hi @cormdog!
You can use the API to set the panel. Here's a demo and the code:
HTML (inside panel)
<a class="mb-link" href="#2">2</a>
Javascript (inside of a document ready function)
$('.mb-link').click(function(){
// substring(1), removes the "#" from "#1"
$('#slider').movingBoxes( this.hash.substring(1) );
});
Awesome thanks
Is it possible add an anchor link inside one of the panels that would scroll to another panel. I want to create a couple questions that would then scroll to the appropriate panel. Thanks in advance.