I am trying to create a little flip book. I have as many divs as there are pages. They are all set to display: none; Unless they have the current class attached.
I have one page showing, and the page that would go next to it showing just beside it. I want to take the page that is beside it, and make it flip onto the other page to get to the next div.
What I have right now is the single page will flip on top of itself instead of the page next to it. I have all of the variables set up properly and I have the proper divs that are supposed to show up when flipped showing when they should.
Code I am using to flip:
jQT.goTo($('#page' + currPage), 'flip');
Can anyone help?