Merge branch 'master' of bitbucket.org:venbainformationtechnology/golf_backend

This commit is contained in:
sriramv 2023-07-24 15:02:11 +05:30
commit 76544bda1e
3 changed files with 24 additions and 0 deletions

View File

@ -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>

View File

@ -447,6 +447,14 @@ $(document).ready(function(){
});
});
$('#country').change(function() {
var country = $("#country").val();
if(country != 'Canada')
{
$('#state').val('');
}
});
</script>
<script>

View File

@ -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>