Skip to content

Instantly share code, notes, and snippets.

@tony2nite
Created April 17, 2012 11:16
Show Gist options
  • Save tony2nite/2405348 to your computer and use it in GitHub Desktop.
Save tony2nite/2405348 to your computer and use it in GitHub Desktop.
Bookmarklet to redirect from an article on The Guardian site to The Guardian Facebook app
<html>
<body>
<a href="javascript:(function () {
var host = 'http://www.guardian.co.uk/';
var url = location.href;
if (url.indexOf(host) == 0) {
var dir = url.substring(host.length);
var FACEBOOK_GUARDIAN = 'https://apps.facebook.com/theguardian/';
location.href = FACEBOOK_GUARDIAN + dir;
}
}()); ">Read The Guardian in Facebook</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment