mstratman / jQuery-Smart-Wizard

flexible jQuery plug-in that gives wizard like interface
http://mstratman.github.com/jQuery-Smart-Wizard/
304 stars 164 forks source link

two div.actionbar are created #67

Open gksoft opened 9 years ago

gksoft commented 9 years ago

when you use the code below two div.actionbar are created (http://jsfiddle.net/pbscp5aj/3/)

$(document).ready(function() { $('#wizard').smartWizard({ onShowStep:OnShowStepCallback, }); });

function OnShowStepCallback(obj){ $('#wizard').smartWizard('setError',{stepnum:obj.stepnumber,iserror:true}); }