Link to Individual Pages
My client would like to be able to have their own text index that the user clicks on in order to go directly to a page within the flipbook.
Could we have some kind of JavaScript/DOM implementation to achieve this? It shouldn't be too difficult :)
8
votes
Dick Dolby
shared this idea
-
Dick Dolby commented
I have been poking around the various JS files but I am no jQuery expert. I have this so far:
function turnTo(page) {
var grill = $('div[name="flipgorilla"]');
fg.FlipGorilla( grill ).flipTo(page, true);
}Currently when I call (eg) turnTo(10) it simply reloads the flipbook in the container and fails with "Cannot call method 'flipTo' of undefined" but you see what I am trying to achieve here.