M.O.S. Studios Posted May 8, 2015 Share Posted May 8, 2015 (edited) I am working on a website for an e-book that is available on KINDLE. I am working on a script that will send a user to the Amazon page associated with their country. it seems to be working, but I am not able to test properly because I am not able to go around the world to test the script! Is there any (free) was I can fake where my computer is so I can properly test the script? here is the code that determines where the user is coming from jQuery.ajax({ url: '//freegeoip.net/json/', type: 'POST', dataType: 'jsonp', success: function(location){ window.userLocal = []; for(var keyy in location){ window.userLocal[keyy] = location[keyy]; } } }); Edited May 8, 2015 by M.O.S. Studios Quote Link to comment https://forums.phpfreaks.com/topic/296156-user-location/ Share on other sites More sharing options...
requinix Posted May 9, 2015 Share Posted May 9, 2015 Proxies. Configure your browser to use one of the millions of free proxies located around the world. Quote Link to comment https://forums.phpfreaks.com/topic/296156-user-location/#findComment-1511215 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.