Need to expand on form wizard
Hi all,
Based on the form wizard plug in from http://www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspx I need to modify it slightly and am a little stuck on how to do it. I was able to make it validate each step before going on to the next, and now have one final tweak. It only marks the current step you are on. I need to make it apply a style to the visited steps as well as the current step. It seems a simple script but Im having trouble getting it to work.
Im thinking its somewhere in here
function selectStep(i) {
$("#steps li").removeClass("current");
$("#stepDesc" + i).addClass("current");
}
Help!