Method returns boolean value which specifies whether autoplay is paused.
1) Method can be called inside every callback function (as demonstrated in demo 1):
this.isPaused();
2) In case there is only one element matching the selector, method can be called anywhere in your code (as demonstrated in demo 2):
$('selector').data('jAccordion').isPaused();
3) In case there are more elements matching the selector, method can be called anywhere in your code (eq(index) specifies index of accordion instace):
$('selector').eq(index).data('jAccordion').isPaused();
Demo 1 demonstrates how to call the described method inside callback function onPause() and onResume() (the protocol is the same for all callback functions). Move cursor over accordion and look at the report below which indicates whether accordion is paused.
Demo 2 demonstrates how to call the described method anywhere in your code. Method is called every second.
jAccordion by maniacpc, exclusively for CodeCanyon