Skip to content

Instantly share code, notes, and snippets.

@rayboyd
Created July 19, 2011 23:25
Show Gist options
  • Save rayboyd/1093999 to your computer and use it in GitHub Desktop.
Save rayboyd/1093999 to your computer and use it in GitHub Desktop.
Bookmarklet to send basic IMDb info via GET request to a url.
javascript:(function(){var meta=document.getElementsByTagName('meta');for(var i=0;i<meta.length;i++){switch(meta[i].getAttribute('property')){case'og:title':var title=encodeURIComponent(meta[i].getAttribute('content'));break;case'og:director':var director=encodeURIComponent(meta[i].getAttribute('content'));break;case'og:url':var url=encodeURIComponent(meta[i].getAttribute('content'));break;};};window.open('http://url.co.uk/?title='+title+'&director='+director+'&url='+url);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment