/**
* @author https://codepen.io/bookmarklets
* @file Looks up the selected word in the dictionary.
Now tweaked to open in a new tab.
* Original Source {@link https://cdpn.io/bookmarklets/fullpage/NobJbq#}
*/
javascript:var q=document.getSelection();
if(q!='') {
window.open('http://dictionary.com/browse/'+q);
} else {
var q=window.prompt('Highlight a word to look up on the page\nOr just enter it here:', 'Enter word to look up');
}
if (q!='Enter word to look up') {
window.open('http://dictionary.com/browse/'+q);
} else {
alert('You must either highlight a word on the page\n or enter a word in the dialog box!');
}