📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv9.demodesign.com.tr
/
themes
/
default
/
assets
/
js
📝
shop.js
← Geri Dön
(function ($) { 'use strict'; var productDetails = function () { $('.detail-qty').each(function () { var qtyval = parseInt($(this).find('.qty-val').text(), 10); $('.qty-up').on('click', function (event) { event.preventDefault(); qtyval = qtyval + 1; $(this).prev().text(qtyval); }); $('.qty-down').on('click', function (event) { event.preventDefault(); qtyval = qtyval - 1; if (qtyval > 1) { $(this).next().text(qtyval); } else { qtyval = 1; $(this).next().text(qtyval); } }); }); $('.dropdown-menu .cart_list').on('click', function (event) { event.stopPropagation(); }); }; $(document).ready(function () { productDetails(); }); })(jQuery);
💾 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