📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
belediyescripti.demodesign.com.tr
/
tema
/
genel
/
bakimda
/
js
📝
general.js
← Geri Dön
//enter the count down date using the format year, month, day, time:time // Utilizing the Modernizr object created to implement placeholder functionality function hasPlaceholderSupport() { var input = document.createElement('input'); return ('placeholder' in input); } if (!Modernizr.input.placeholder) { $('[placeholder]').focus(function() { var input = $(this); if (input.val() == input.attr('placeholder')) { input.val(''); input.removeClass('placeholder'); } }).blur(function() { var input = $(this); if (input.val() == '' || input.val() == input.attr('placeholder')) { input.addClass('placeholder'); input.val(input.attr('placeholder')); } }).blur(); $('[placeholder]').parents('form').submit(function() { $(this).find('[placeholder]').each(function() { var input = $(this); if (input.val() == input.attr('placeholder')) { input.val(''); } }) }); } $('a[href="#"]').click(function(e) { e.preventDefault(); }); //Animate Section on Appear $(document).ready(function() { $('.fade-down').each(function() { $(this).appear(function() { $(this).delay(1000).addClass('animated fadeInDown'); }); }); $("a.tool-tip").tooltip(); }); // Contact Form Mail Functionality $(document).ready(function() { $(".validate").validate(); $(document).on('submit', '.contact-form', function() { $.ajax({ url : 'contact.php', type : 'post', data : $(this).serialize(), success : function(data) { $('.form-respond').html("<div class='content-message success'><h2>Email Sent Successfully Your message has been submitted.</h2></div>"); }, error : function(xhr, err) { $('.form-respond').html("<div class='content-message'><h2>Error sending Try again later.</h2></div>"); } }); return false; }); });
💾 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