/*! * jQuery Stepy - A Wizard Plugin - http://wbotelhos.com/stepy * ------------------------------------------------------------------------------------ * * jQuery Stepy is a plugin based on FormToWizard that generates a customizable wizard. * * Licensed under The MIT License * * @version 1.0.0 * @since 2010.07.03 * @author Washington Botelho * @documentation wbotelhos.com/stepy * @twitter twitter.com/wbotelhos * * Usage with default values: * ------------------------------------------------------------------------------------ * $('#step').stepy(); * *
*
* description one * *
* *
* description one * *
* * *
* */ ;(function($) { var methods = { init: function(options) { return this.each(function() { var opt = $.extend({}, $.fn.stepy.defaults, options), $this = $(this).data('options', opt), id = $this.attr('id'); if (id === undefined || id == '') { id = 'stepy-' + $('.' + $this.attr('class')).index(this); $this.attr('id', id); } var $titlesWrapper = $('