Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $(document).on("change", '[id$=ddlPayToIndividual]', function () {
  2. . . . // unrelated code elided for brevity
  3. var $uscitizenyes = $('[id$=rbUSCitizenOrPermResY]');
  4. var $uscitizenno = $('[id$=rbUSCitizenOrPermResN]');
  5. if (!$uscitizenyes.checked && !$uscitizenno.checked) {
  6. alert('You must select above whether payee is a US Citizen or Permanent Resident or not');
  7. }
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement