Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script src="../js/azia.js"></script>
  2.     <script>
  3.       $(function(){
  4.         'use strict'
  5.  
  6.           $('#wizard2').steps({
  7.           headerTag: 'h3',
  8.           bodyTag: 'section',
  9.           autoFocus: true,
  10.           titleTemplate: '<span class="number">#index#</span> <span class="title">#title#</span>',
  11.           onStepChanging: function (event, currentIndex, newIndex) {
  12.             console.log(newIndex);
  13.  
  14.             return true;
  15.           }
  16.         });
  17.  
  18.       });
  19.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement