Skip to content

Instantly share code, notes, and snippets.

@dylanjhunt
Last active April 20, 2018 10:53
Show Gist options
  • Save dylanjhunt/b73fc2747a734fd3fe56bb033456455d to your computer and use it in GitHub Desktop.
Save dylanjhunt/b73fc2747a734fd3fe56bb033456455d 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') {
// Tell him about the Canadian store.
jQuery.fancybox.open(jQuery('#message'));
}
}
} );
</script>
<div style="display:none;">
<div id="message" style="padding:30px;">
<h1>Hello!</h1>
<p>You are in Canada, and we have a Canadian website <a href="https://dylanjh.com">here</a>.</p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment