Advertisement
Guest User

Untitled

a guest
Mar 15th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $('#recipient_type').blur ->
  2. if $(this).val() == 'Other'
  3. $('#recipient-details').show()
  4. else
  5. $('#recipient-details').hide()
  6.  
  7. $('#recipient_type').blur(function() {
  8. if ($(this).val() === 'Other') {
  9. return $('#recipient-details').show();
  10. } else {
  11. return $('#recipient-details').hide();
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement