views:

70

answers:

2

Tryin to call the next method:

http://www.jcoverflip.com/documentation/advance-customization#section-methods

<script type="text/javascript">
    jQuery(document).ready(function() {

        jQuery('#flip').jcoverflip();

        $('#right').click(function() {
           var i =  jQuery('#flip').jcoverflip();
           i.next();
        });
    });      
</script>

but does nothing

A: 

The methods you're after are widget methods, called like this:

jQuery("#flip").jcoverflip("next");

The first parameter is the method name, the optional parameters are passed as the 2nd, 3rd, etc. arguments.

Nick Craver
A: 

hi im new in javascript i just want to know how to add autoplay option in jcoverflip

please help

thank you any help would be appriciated

Vij