If I for example have
<p> some long text </p>
on my HTML page, how can I know that cursor of mouse is for example above the word ‘text’?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Further to the two other answers, you may be able to split your paragraphs up into spans using jQuery (or javascript generally).
That way, you wouldn’t need to think about outputting your text with spans around the words. Let your javascript do it for you.
e.g.
Note that the above code, while it works, will strip out any html inside your paragraph tags.
jsFiddle example