braintree_cashier-8.x-4.x-dev/js/plan_select_form.js
js/plan_select_form.js
(function (Drupal) {
'use strict';
/**
* Clear the coupon code field when a new plan is selected.
*/
Drupal.behaviors.braintreeCashierPlanSelect = {
attach: function (context, settings) {
jQuery('#edit-plan-entity-id').on('change', function () {
jQuery('#coupon-result').empty();
jQuery('#coupon-code').val('');
});
}
};
})(Drupal);
