No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

script.js 242B

12345678910
  1. $(function () {
  2. $('select').each(function () {
  3. $(this).select2({
  4. theme: 'bootstrap4',
  5. width: 'style',
  6. placeholder: $(this).attr('placeholder'),
  7. allowClear: Boolean($(this).data('allow-clear')),
  8. });
  9. });
  10. });