Merge branch 'master' of bitbucket.org:venbainformationtechnology/golf_backend
This commit is contained in:
commit
76544bda1e
@ -331,6 +331,14 @@ function get_country_code()
|
||||
//alert(countryCode);
|
||||
$('#country_code_post').val(countryCode);
|
||||
}
|
||||
$('#country').change(function() {
|
||||
var country = $("#country").val();
|
||||
if(country != 'Canada')
|
||||
{
|
||||
$('#state').val('');
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
@ -447,6 +447,14 @@ $(document).ready(function(){
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
$('#country').change(function() {
|
||||
var country = $("#country").val();
|
||||
if(country != 'Canada')
|
||||
{
|
||||
$('#state').val('');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
|
||||
@ -238,6 +238,14 @@ function get_country_code()
|
||||
//alert(countryCode);
|
||||
$('#country_code_post').val(countryCode);
|
||||
}
|
||||
|
||||
$('#country').change(function() {
|
||||
var country = $("#country").val();
|
||||
if(country != 'Canada')
|
||||
{
|
||||
$('#state').val('');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user