Jquery help : How to implement a Previous/Next & Play/Pause toggle for this script
- by rameshelamathi
(function($){
// Creating the sweetPages jQuery plugin:
$.fn.sweetPages = function(opts){
// If no options were passed, create an empty opts object
if(!opts) opts = {};
var resultsPerPage = opts.perPage || 3;
var swDiv = opts.getSwDiv || "swControls";
// The plugin works best for unordered lists, althugh ols would do just as…