Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Left & Right Buttons to the Flipbook #523

Open
parimgopinaidu opened this issue Aug 24, 2015 · 1 comment
Open

Adding Left & Right Buttons to the Flipbook #523

parimgopinaidu opened this issue Aug 24, 2015 · 1 comment

Comments

@parimgopinaidu
Copy link

Hi i tried to add the Left & Right Button to the Flip page .. but Unable..
i added them because if some one unable to flip it with finger tip in Tablet version so button helps him..
Please check the URL and please suggestion me the necessary thing ..
http://jsfiddle.net/A9a7E/9987/

Thanks
Gopi

@quinns
Copy link

quinns commented Oct 19, 2015

This worked for me:

<button id="previousPage">Previous page</button>
<button id="nextPage">Next page</button>
jQuery(document).ready(function() {
        $('#previousPage').click(function(){
            $('#book').turn('previous');
        });
        $('#nextPage').click(function(){
            $('#book').turn('next');
        });
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants