This commit is contained in:
suresh 2023-07-22 14:59:10 +05:30
parent 69645b2b6d
commit 4b95341a25

View File

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