Advertisement
Guest User

a

a guest
Jul 24th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. jQuery("#billing_city").on('change', function(e){
  2. //console.log(this.value);
  3. jQuery("input[name='billing[city]']").val(this.value);
  4.  
  5. var UnavailableCity = ["Bangued", "Boliney", "Bucay", "Bucloc" ,"Daguioman","Danglas","Dolores"
  6. ,"La Paz","Lacub","Lagangilan","Lagayan","Langiden","Licuan","Luba","Malibcong"
  7. ,"Manabo","Peñarrubia","Pidigan","Pilar","Sal-Lapadan","San Isidro","San Juan"
  8. ,"San Quintin","Tayum","Tineg","Tubo","Villaviciosa"];
  9.  
  10. if (this.value == UnavailableCity){
  11. alert('City Unavailable');
  12. }
  13.  
  14. else{
  15. alert('City Available');
  16. }
  17.  
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement