Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dylanjhunt/133b9005c1406d199fc17b8911f8a879 to your computer and use it in GitHub Desktop.
Save dylanjhunt/133b9005c1406d199fc17b8911f8a879 to your computer and use it in GitHub Desktop.
<script>
jQuery.ajax( {
url: '//freegeoip.net/json/',
type: 'POST',
dataType: 'jsonp',
success: function(location) {
// If the visitor is browsing from Canada.
if (location.country_code === 'CA') {
// Redirect him to the Canadian store.
window.top.location.href = 'http://dylanjh.com';
}
}
} );
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment