scripts.js 590 B

123456789101112131415161718192021222324
  1. $(document).ready(function () {
  2. $('#is_free').on('change', function () {
  3. console.log($(this).val());
  4. if ($(this).val() == 0) {
  5. $('#delivery_cost').fadeIn();
  6. } else {
  7. $('#delivery_cost').fadeOut();
  8. }
  9. });
  10. $('.select2').select2({
  11. placeholder: 'Select'
  12. });
  13. $('.table').DataTable({
  14. 'info' : false,
  15. 'paging' : false,
  16. 'searching' : false,
  17. 'columnDefs' : [
  18. {
  19. 'orderable': false, 'targets' : -1
  20. }
  21. ],
  22. 'sorting' : []
  23. });
  24. });