Twelve Years of Service
Posts: 23
Threads: 7
How to make a pop up bubble? 05-28-2014, 05:22 AM
#1
Hey, I've been trying to figure out how to make a pop up message appear where the mouse is when the user hovers over a specific area of the webpage, I don't know if this would be CSS or JavaScript but either way it would be great if I could get this worked out by 11:00 am Thursday. Thanks for the support! ^_^
•
Twelve Years of Service
Posts: 366
Threads: 29
RE: How to make a pop up bubble? 05-28-2014, 02:16 PM
#3
Its called
"Javascript onMouseover"
It simply executes a javascript when you move your mouse over the link/script.
FOR HTML>
Code:
<element onmouseover="SomeJavaScriptCode">
FOR JAVASCRIPT>
Code:
object.onmouseover=function(){SomeJavaScriptCode};
Example:
Code:
<img onmouseover="bigImg(this)" src="smiley.gif" alt="Smiley">
Source: W3Schools
- Trust is your weakness....
•
Twelve Years of Service
Posts: 23
Threads: 7
RE: How to make a pop up bubble? 05-29-2014, 03:36 PM
#5
Thank you all for your help, it is much appreciated! :Grin:
•