vote up 0 vote down star

Hi, I add a div tag and append it to the body and then i add to add items to the div so that it becomes a popup menu. After appending the to body, is there a way to move the div tag. Actually what i want to do is that i want the div to appear wherever the mouse was clicked on the webpage. By the way i am developing a firefox extension. I need some help on this.

flag

0% accept rate

2 Answers

vote up 0 vote down

You want to use the position:absolute style, along with left: and top:.

link|flag
vote up 0 vote down

This quirksmode article is a great start when looking for help with mouse (x,y) coordinates.

Once you compute the coordinates, you can then use that information to position the div element on the page using css.

link|flag
Thanks that was quite helpful – fftoolbar Nov 7 at 15:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.