1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <script type="text/javascript">
function getSelectionText(w) {
var text = "";
if (w.getSelection) {
text = w.getSelection().toString();
}
else if (w.document.selection && w.document.selection.type != "Control") {
text = w.document.selection.createRange().text;
}
return text;
}
var parentwin = window.external.menuArguments;
var selection = getSelectionText(parentwin);
var oWindow = window.external.menuArguments;
selection = selection.replace(/ /g,"");
var strURL = "http://en.wiktionary.org/wiki/" + selection;
oWindow.open(strURL);
</script> |
Partager