Its possible to find list of state based on selected country..
Here i have attached some sample code
$("#state").keypress(function(){
var input = document.getElementById('state');
//var c1=$("#country").val();
var c1="us";
// alert(c1);
var options = {componentRestrictions: {country: c1}};
new google.maps.places.Autocomplete(input, options);
});
if i set country is "us" ,its working but not for other country..
How to find state based on selected country?
Please any one help to me.....