Guest User

Untitled

a guest
Jul 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. $(document).ready(disablecity);
  4. function disablecity(){
  5. disable();
  6. $('#country').change(disable);
  7. function disable()
  8. {
  9.  
  10.  
  11.  
  12. value=$('#country :selected').text();
  13. if(value!=='Pakistan')
  14. {
  15. $('#city').attr('disabled','disabled');
  16. }
  17. if(value=='Pakistan')
  18. {
  19. $('#city').removeAttr('disabled','disabled');
  20. }
  21.  
  22.  
  23.  
  24. }
  25.  
  26. }
  27.  
  28.  
  29.  
  30. </script>
Add Comment
Please, Sign In to add comment