I have 2 questions:
- How would I make a small overlay open if a mouse hovers over any image on a webpage?
- How would I find selected pieces of text on a webpage and make them into a link?
(similar to what Kontera or Vibrant does)
EDIT – Let me explain.
- If a mouse hovers over any image on the website with a particular tag, I want a magnified version of the image opened next to it
- If I have a word – “skills” inside my database and the webpage on which my Javascript is added has the word “skills” on it, I want it to be highlighted and linked to another page
1:
I know that in CSS you can use some hover keyword to effect the page (but I know little about CSS).
In javascript/HTML there is onMouseOver and onMouseOut, so.
2:
You could use regex to find the text snd replace it.