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.

10 lines
221B

  1. jQuery(document).ready(function() {
  2. custom_switch_merchants() ;
  3. }) ;
  4. function custom_switch_merchants() {
  5. $('#switch-merchant select').change(function() {
  6. $('#switch-merchant form').submit() ;
  7. }) ;
  8. }