Jump to content

How do I create Pop-up Baloons?


dansphere

Recommended Posts

...or try something with 'aboslute' position divs, like:css:

#yourDiv {  position: absolute;  visibility: hidden;  }

then in the onmouseover event of your link or whatever, use something like:

document.getElementById("yourDiv").visibility="";document.getElementById("yourDiv").top=event.x;document.getElementById("yourDiv").left=event.y;

please note the 'something like' :)hope I helped

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...