Skip to content

Instantly share code, notes, and snippets.

View yasiralijaved's full-sized avatar

Yasir Ali yasiralijaved

View GitHub Profile
@yasiralijaved
yasiralijaved / read-guardian-in-facebook
Created April 17, 2012 11:19 — forked from tony2nite/read-guardian-in-facebook
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 = document.location.href;
if (url.indexOf(host) == 0) {
var dir = url.substring(host.length);
var FACEBOOK_GUARDIAN = 'https://apps.facebook.com/theguardian/';
document.location.href = FACEBOOK_GUARDIAN + dir;
}