次のステップに移動したときにアラート メッセージを非表示にしたい。
jquery スマート ウィザード タブ ナビゲーションを使用しています。サンプルコードをご確認ください。
if(step == 1){
if(validateStep1() == false ){
isStepValid = false;
$('#wizard').smartWizard('showMessage','Please correct the errors in application form and click next.');
$('#wizard').smartWizard('setError',{stepnum:step,iserror:true});
}else{
$('#wizard').smartWizard('setError',{stepnum:step,iserror:false});
}
}
前もって感謝します。