📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv6.demodesign.com.tr
/
panel
/
assets
/
js
📝
form-wizard.js
← Geri Dön
$(function() { 'use strict' $('#wizard1').steps({ headerTag: 'h3', bodyTag: 'section', autoFocus: true, titleTemplate: '<span class="number">#index#<\/span> <span class="title">#title#<\/span>' }); $('#wizard2').steps({ headerTag: 'h3', bodyTag: 'section', autoFocus: true, titleTemplate: '<span class="number">#index#<\/span> <span class="title">#title#<\/span>', onStepChanging: function(event, currentIndex, newIndex) { if (currentIndex < newIndex) { // Step 1 form validation if (currentIndex === 0) { var fname = $('#firstname').parsley(); var lname = $('#lastname').parsley(); if (fname.isValid() && lname.isValid()) { return true; } else { fname.validate(); lname.validate(); } } // Step 2 form validation if (currentIndex === 1) { var email = $('#email').parsley(); if (email.isValid()) { return true; } else { email.validate(); } } // Always allow step back to the previous step even if the current step is not valid. } else { return true; } } }); $('#wizard3').steps({ headerTag: 'h3', bodyTag: 'section', autoFocus: true, titleTemplate: '<span class="number">#index#<\/span> <span class="title">#title#<\/span>', stepsOrientation: 1 }); });
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula