function getSelectedTextInWebpage()
{
// Firefoxや Safariなどnon-IE ブラウザー
if(window.getSelection)
return window.getSelection();
else if(document.getSelection)
return document.getSelection();
else
{
// IEブラウザー
var selection = document.selection && document.selection.createRange();
if(selection.text)
return selection.text;
return false;
}
return false;
}