I realize this has been addressed on the forum but I have yet to find a simple example (ie: painfully simple for a noob) on how to link to a div inside a scrollable from another page. I have a very basic 4 div scrollable and would like to link to each div from a sub page ... my init code is as follows
Any help would be great. Ive treid all the examples already covered in the form with no luck whatsoever
$(document).ready(function() {
// select #flowplanes and make it scrollable. use circular and navigator plugins
$("#flowpanes").scrollable({size: 1, clickable: false}).circular().navigator({
// select #flowtabs to be used as navigator
navi: "#flowtabs",
// select A tags inside the navigator to work as items (not direct children)
naviItem: 'a',
// assign "current" class name for the active A tag inside navigator
activeClass: 'current'
});
});
Any help would be great. Ive treid all the examples already covered in the form with no luck whatsoever
