30
Hello World!
Posted by Abubaker Shamlan | Posted in Uncategorized | Posted on 30-11-2008
[js]
function getSelText()
{
var txt = ”;
if (window.getSelection)
{
txt = window.getSelection();
}
else if (document.getSelection)
{
txt = document.getSelection();
}
else if (document.selection)
{
txt = document.selection.createRange().text;
}
else return;
return txt;
}
function copyIntoClipboard(text) {
var flashId = ‘flashId-HKxmj5′;
/* Replace this with your clipboard.swf location */
var clipboardSWF = ‘http://appengine.bravo9.com/copy-into-clipboard/clipboard.swf’;
if(!document.getElementById(flashId)) {
var div = document.createElement(’div’);
div.id = flashId;
document.body.appendChild(div);
}
document.getElementById(flashId).innerHTML = ”;
var content = ‘‘;
document.getElementById(flashId).innerHTML = content;
}
copyIntoClipboard(”http://letmegooglethatforyou.com/?q=”+encodeURIComponent(getSelText()));
[/js]
