Guest User

Untitled

a guest
Jul 21st, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $("#btnSubmit").click(function() {
  2.  
  3.                 countryID = document.getElementById("Countries");
  4.                 productType = document.getElementById("ProductType");
  5.                 issuerID = document.getElementById("Issuer");
  6.  
  7.                 var selectedCountryID = countryID.options[countryID.selectedIndex].value;
  8.                 var selectedProductType = productType.options[productType.selectedIndex].value;
  9.                 var selectedIssuerID = issuerID.options[issuerID.selectedIndex].value;
  10.  
  11.                 alert(selectedCountryID);
  12.                 alert(selectedProductType);
  13.                 alert(selectedIssuerID);
  14.  
  15.                 if (selectedCountryID != "" && selectedProductType != "" && selectedIssuerID != "") {
  16.                     alert("inside func");
  17.                     $.ajax({
  18.                         url: '/Home/Index?countryID=' + selectedCountryID + '&issuerID=' + selectedIssuerID + '&productType=' + selectedProductType + '&userName=&jobLink=&jobID=',
  19.                         type: 'POST',
  20.                         contentType: 'application/json; charset=utf-8',
  21.                         success: function(data) { alert(data); }
  22.                     });
  23.  
  24.                     alert("outside post");
  25.                 }
  26.             });
Add Comment
Please, Sign In to add comment