getting coordinates of a text node (in Firefox)

W

wolfgang.schwarz

hi,

is there a way of getting the position and size of a text node in
Firefox without altering the DOM? For example, suppose I have a
document fragment like this:

<div>
textnode1
<img>
textnode2 textnode3
</div>

I can get the div's coordinates, but that doesn't help me much if I
want to know the position (and ideally also the size) of textnode2. I
could wrap the text node into a new <span> element, but that often
alters the look of the page.

I need this for a xulrunner application, so it's fine if it only works
in (some version of) Firefox/Mozilla.

Thanks,
wo.
 
M

Martin Honnen

is there a way of getting the position and size of a text node in
Firefox without altering the DOM? For example, suppose I have a
document fragment like this:

<div>
textnode1
<img>
textnode2 textnode3
</div>

Why would you have two text nodes after the img element? Are you
constructing the DOM with script and appending two text nodes? Otherwise
there is only one text node after the img, even if there are several
words in the text contents.

I need this for a xulrunner application, so it's fine if it only works
in (some version of) Firefox/Mozilla.

I don't know of any properties exposes in Mozilla's DOM on text nodes
that would yield a position. You might want to ask in mozilla.dev.tech.dom.
 
W

wolfgang.schwarz

Thanks Martin,

Why would you have two text nodes after the img element? Are you
constructing the DOM with script and appending two text nodes? Otherwise
there is only one text node after the img, even if there are several
words in the text contents.

I actually need the coordinates of every line of text on the page,
that's why I split the text nodes at linebreaks.

wo.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,535
Members
45,007
Latest member
obedient dusk

Latest Threads

Top