suresh
This commit is contained in:
parent
4b95341a25
commit
157d17db65
@ -331,6 +331,14 @@ function get_country_code()
|
|||||||
//alert(countryCode);
|
//alert(countryCode);
|
||||||
$('#country_code_post').val(countryCode);
|
$('#country_code_post').val(countryCode);
|
||||||
}
|
}
|
||||||
|
$('#country').change(function() {
|
||||||
|
var country = $("#country").val();
|
||||||
|
if(country != 'Canada')
|
||||||
|
{
|
||||||
|
$('#state').val('');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -454,7 +454,7 @@ $('#country').change(function() {
|
|||||||
{
|
{
|
||||||
$('#state').val('');
|
$('#state').val('');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@ -238,6 +238,14 @@ function get_country_code()
|
|||||||
//alert(countryCode);
|
//alert(countryCode);
|
||||||
$('#country_code_post').val(countryCode);
|
$('#country_code_post').val(countryCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$('#country').change(function() {
|
||||||
|
var country = $("#country").val();
|
||||||
|
if(country != 'Canada')
|
||||||
|
{
|
||||||
|
$('#state').val('');
|
||||||
|
}
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user