vote up 4 vote down star
4

for a page like

http://www.answers.com

if the user double clicks on any word in the page, a pop up box will show up and shows the definition for that word.

I can think of a way to use DOM scripting to break up all words in the page and then make each of them go under a separate "span" element... but otherwise isn't it true that if all the text is under a "p" element, then the "p" element node get triggered to handle the double click event, but there is no easy way of telling which word is clicked on?

flag

24% accept rate
Good question, neat functionality, will be watching this question – The real napster May 18 at 16:54

2 Answers

vote up 3 vote down

Here you go, a blog article that describes how you do this using jQuery. His test implementation is similar to what you want, namely double clicking a word pulls up the definition from a dictionary:

Using jQuery and Double clicks to get data

link|flag
vote up 6 vote down

You simply add a double click event to the entire document, like so:

function getSelection() {
    var txt = '';
    if (window.getSelection) {
        txt = window.getSelection();
    } else if (document.getSelection) {
        txt = document.getSelection();
    } else if (document.selection) {
        txt = document.selection.createRange().text;
    }
    return txt;
}

$(document).dblclick(function(e) {
    var t = getSelection();
    alert(t);
});

If you only wanted this to work on select paragraphs, you would change the selector to p.myclass or something like that. This hinges on the fact double clicking a word highlights it in browsers. Not really sure if it's exactly how answers.com does it, to be honest.

link|flag
Beat me a few minutes. I was about to suggest the same thing. +1 – José Basilio May 18 at 17:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.