Advertisement
Stammi

Peach - Wizard - new

Nov 14th, 2011
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var initial_page = 1;
  2. if (window.location.hash.indexOf('#step-') == 0) {
  3.     var index = parseInt(window.location.hash.substr(1).replace('step-', ''));
  4.     initial_page = index;
  5. }
  6.  
  7. $('.wizard').each(function() {
  8.     var $this = $(this);
  9.     $('.content', $this).height($('.steps', $this).height() + $('.step_1', $this).height());
  10.     showWizPage(initial_page, $this);
  11. });
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement