vote up 0 vote down star

I am trying to position an span element (let us call it "the tooltip span") relative to a input field. To do this, I am wrapping the tooltip span and the input field in another span element (let's call it "the wrapper span") that has position: relative. Then I set position: absolute on tooltip span. This makes the tooltip span position itself relative to the wrapper span but not being part of the page flow - not taking up any space. This is exactly what I want.

Then, using javascript, I set the position of the tooltip relative to the position of the input element. Since the input element can be shaped differently on different pages (script should be globablly applicable), I am using its offsetTop and offsetLeft properties to calculate its position relative to the wrapper span.

However, I am noticing inconsistencies between browsers here. In Firefox, IE6, 7, 8, it works as expected. But in Chrome and Safari the reported offsetTop seems, well, incorrect.

To prove this, I created the test page below:

<html>
<head>
<style type="text/css">
span { font-size: 8px; position: relative; top: 0; left: 0; border: 1px solid red } 
</style>
</head>
<body>

<span id="wrapper">
<input id="foo" name="foo" type="text">
</span>

<script type="text/javascript">
document.write("<br>Offset parent: " + document.getElementById("foo").offsetParent.id);
document.write("<br>Offset top: " + document.getElementById("foo").offsetTop);
</script>

</body>
</html>

and loaded it in Firefox and Chrome. Both browser report the wrapper span as its offsetParent, but for Firefox the offsetTop is -8 and for Chrome it is 2. Visually the page renders the same in both browsers.

This gives me a headache, because I cannot just hack in a different offset that I always apply when someone is using Chrome, because if I change the font size, the offsetTop will not change, and my script will break.

Is this a bug? Can I solve this differently?

flag

Try waiting until the document is ready – Greg Sep 24 at 16:43
I did this in the "real" code: doesn't seem to matter. I've inspected the offsetTop in Firebug and in the Chrome developer window and the values are the same. – waxwing Sep 24 at 17:50

2 Answers

vote up 1 vote down check

Use jQuery. DOM differences between browsers is one of the things it excels at.

link|flag
Holy rusted metal! I was going to say that this is not one of those problems where JQuery is the answer. But it turns out that there is a position() function I was not aware of, that really does the trick. The question still remains why Chrome/Safari reports the offset differently. But you get the check. – waxwing Sep 25 at 8:26
vote up 0 vote down

Put you code into a window.onload function. I recall having issues when attempting to work with the dom directly from a <script> during page load in firefox, and webkit tends to be slightly more willing to give a sane DOM at such points.

This is just based on prior issues i've encountered, i'm not sure if it's applicable to your case.

link|flag

Your Answer

Get an OpenID
or

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