Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function PaymentTypeClick() {
  2.  
  3. $(".payments").click(function() {
  4.  
  5. event.preventDefault();
  6.  
  7.  
  8. var paymentType = $(this).text().trim();
  9. var customerName = $("#custAccntNumber").val();
  10. var startDate = $("#startDate").val();
  11.  
  12. /*
  13. * window.location.href = 'PaymentLookup ?customerName=' +
  14. * customerName+ '&customerAcctNum=' + customerAcctNum+
  15. * '&activePaymentType=' + paymentType;
  16. */
  17.  
  18. window.location.href = 'PaymentLookup ';
  19.  
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement