I am using the jQuery Booklet plugin to flip page in my application. I need that the flip will be done automatically (without the user input) and will stop exactly after one flip. I implemented the auto play according to the instruction
$(function() {
$('#mybook').booklet({
    auto: true
});
and now I want to add the "pause" call but in the instruction page there is only example where the pause is done by clicking on the pause link
   $(function() {
$('#mybook').booklet({
    auto: true,
    play: '#play',
    pause: '#pause'
});
});
and I need it to be done without a user input.
I will appreciate your help in this problem
Thanks