tags:

views:

207

answers:

1

I just made some changes to my website, it will display different greeting text for different continents, I have used Google's API to get location of the user

region = google.loader.ClientLocation.address.region;
country = google.loader.ClientLocation.address.country;
countrycode = google.loader.ClientLocation.address.country_code;

But now i want to test this, so is there any way that i can access my site with the IP of another continent or country, or any other solution for this.

+3  A: 

You could use an online proxy service, located in the country you want to test for. A list of free online proxies can be found at http://proxy.org/.

Mathias Bynens
not working for me atleast :s
Umair
This is a good solution, might work in most of the cases but for me it didnt, coz i was using google's ajax api to get the location on client-side but on a proxy server the google code wasnt working, google.loader.ClientLocation was null.For more simpler problems other than mine you can get a list of proxy servers sorted with respect to countries on http://proxy.org/proxies_sorted.shtml,
Umair