- Impact
- 49
Double click any words on your site will get its instant definition in the dictionary.
Just add the script below in between <head> and </head>
After putting this, dont forget to change your <body> to <body ondblclick="dictionary()">
Good Luck!!!
Just add the script below in between <head> and </head>
Code:
<SCRIPT Language="JavaScript">
//don't forget to add <body ondblclick="dictionary()">
function dictionary() {
if (navigator.appName == "Netscape") {
t = document.getSelection();
opennewdictwin(t);
}
else {
t = document.selection.createRange();
if(document.selection.type == 'Text' && t.text != '') {
document.selection.empty();
opennewdictwin(t.text);
}
}
}
function opennewdictwin(text) {
while (text.substr(text.length-1,1)==' ')
text=text.substr(0,text.length-1)
while (text.substr(0,1)==' ')
text=text.substr(1)
if (text > '') {
var newwin = window.open('http://www.m-w.com/cgi-bin/dictionary?book=Dictionary&va='+text, 'dictionary', 'width=760,height=500,resizable=yes,menubar=no,scr ollbars=yes,status=no,titlebar=yes,toolbar=no,loca tion=yes,personalbar=yes');
}
}
status='double-click any word - get its instant definition in the dictionary.'
document.ondblclick=dictionary //works for IE only. For NS add <body ondblclick="dictionary()">
</SCRIPT>
After putting this, dont forget to change your <body> to <body ondblclick="dictionary()">
Good Luck!!!






