Advertisement

06.29.2007 at 06:48PM PDT, ID: 22668052
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.0

Locate any word clicked on in a page

Asked by rebies in JavaScript

Tags: , , , ,

Hi, I have an interesting JavaScript problem.  I'm trying to create a right click menu for any word on a page.  When the word is right clicked (or just clicked) I would like to highlight the word that was clicked on.  To demonstrate I've attached some code that somewhat does this.  It's not perfect though as it's a lot of processing on a big page - and it does not work correctly if there is HTML inside my span.  Any other ideas on how to achieve this?  I was also thinking I could capture the click event, determine the x,y position of the cursor.  But still then - how do I locate the word on the page at coordinates x,y?  You can do it if every word is it's own span (as below), but that is clumsy.  To be clear, ideally I want you to click any word on the page and highlighting aside pop up an alert that says "you clicked on the word: hippopotamus"

Thanks for suggestions!

----------
<span id="rightclicks">
This is just a quick dirty example.  It is not good because when lots of text is in
this span - it eats up user's CPU way too much.  Also, it would not account for HTML
tags inside the text well.  <a href="likethis.html">like this</a>
</span>

<script language="JavaScript">
      function crclick(whichword) {
            whichword.style.backgroundColor='#FFFF00';
            alert('you clicked on the word: "' + whichword.innerHTML + '"');
      }
      
      var rccon = document.getElementById('rightclicks').innerHTML;
      var rccon = rccon.replace(/\s+/g, ' ');
      var rcconarray = rccon.split(' ');
      var rightclicks2 = '';
      for (i=0; i<rcconarray.length; i++) {
            rightclicks2 = rightclicks2 + '<span id="w' + i + '" onclick="crclick(this);">' + rcconarray[i] + '</span> ';
      }
      document.getElementById('rightclicks').innerHTML = rightclicks2;
</script>Start Free Trial
 
Loading Advertisement...
 
[+][-]06.29.2007 at 07:42PM PDT, ID: 19394661

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]06.29.2007 at 07:54PM PDT, ID: 19394688

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.29.2007 at 08:07PM PDT, ID: 19394707

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06.29.2007 at 08:48PM PDT, ID: 19394795

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.02.2007 at 10:39AM PDT, ID: 19405427

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.02.2007 at 11:05AM PDT, ID: 19405643

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: JavaScript
Tags: how, locate, clicked, page, word
Sign Up Now!
Solution Provided By: jasonsbytes
Participating Experts: 1
Solution Grade: A
 
 
[+][-]08.21.2007 at 04:20PM PDT, ID: 19742506

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]08.21.2007 at 05:17PM PDT, ID: 19742755

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32