Skip to content

Instantly share code, notes, and snippets.

@engleek
Created July 6, 2009 23:50
Show Gist options
  • Save engleek/141775 to your computer and use it in GitHub Desktop.
Save engleek/141775 to your computer and use it in GitHub Desktop.
var selection = false;
if(window.getSelection){
selection = window.getSelection();
}else if(document.getSelection){
selection = document.getSelection();
}else if(document.selection){
selection = document.selection.createRange().text;
}
var pageTitle = document.title;
var pageUrl = document.URL;
var pageImages = document.images;
var pageEmbeds = document.embeds;
var pageLinks = document.links;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment