Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Prevents people from inserting voucher code without submitting it */
  2. $(document).ready(function () {
  3.     $("a.btn--checkout-proceed").click(function (e) {
  4.         if ($("input[name=sVoucher]") && $("input[name=sVoucher]").val() != '') {
  5.             e.preventDefault();
  6.             $("form.add-voucher--form").submit();
  7.         }
  8.     });
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement