Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: form-wizard.js
jQuery(document).ready(function(){ // Basic Wizard jQuery('#basicWizard').bootstrapWizard(); // Progress Wizard $('#progressWizard').bootstrapWizard({ 'nextSelector': '.next', 'previousSelector': '.previous', onNext: function(tab, navigation, index) { var $total = navigation.find('li').length; var $current = index+1; var $percent = ($current/$total) * 100; jQuery('#progressWizard').find('.progress-bar').css('width', $percent+'%'); }, onPrevious: function(tab, navigation, index) { var $total = navigation.find('li').length; var $current = index+1; var $percent = ($current/$total) * 100; jQuery('#progressWizard').find('.progress-bar').css('width', $percent+'%'); }, onTabShow: function(tab, navigation, index) { var $total = navigation.find('li').length; var $current = index+1; var $percent = ($current/$total) * 100; jQuery('#progressWizard').find('.progress-bar').css('width', $percent+'%'); } }); // Form Toggles jQuery('.toggle').toggles({on: true}); jQuery('.toggle-chat1').toggles({on: false}); // Chosen Select jQuery(".chosen-select").chosen({'width':'100%','white-space':'nowrap'}); });