Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
2k views

IE 8 Quirks vs Standards retrieving offsetHeight/offsetWidth

I am in the process of converting my application to use XHTML strict mode (it didn't have a DOCTYPE before). However, I noticed a significant degradation when getting offsetHeight/offsetWidth. This is ...
2
votes
1answer
368 views

Why are offsetHeight and offsetWidth intermittently inaccurate?

I've been noticing that, at least in Firefox (haven't tested extensively in other browsers yet), the offsetHeight and offsetWidth properties on a <div> might be off by one pixel. (And yes, I'm ...
2
votes
1answer
1k views

DOM element width can be non-integer?

I have some one page whose div elements are aligned by JavaScript. The JavaScript just check a set of div elements to find the max offsetWidth, then set all div elements' width to be the max ...
1
vote
1answer
173 views

offsetHeight and offsetWidth calculating incorrectly on first onclick event, not second

I have written the following script to display a hidden element, then fix it's position to the center of the page. function popUp(id,type) { var popUpBox = document.getElementById(id); ...
1
vote
0answers
118 views

ie7 clientWidth and clientHeight problems

I've tried to get the offsetWidth and offsetHeight properties like so: <div id="somediv" ...
1
vote
4answers
936 views

offsetWidth or CSS expression problem for IE6

I need to set the width of textboxes as 80% of it's parent. So first I used td input[type="text"] { width: 80%; } But it was not rendering properly if the input is the child of td. So, I ...
0
votes
2answers
188 views

Test DOM Element offsetHeight & offsetWidth efficiently, without attaching

I have the need to test the offsetWidth and offsetHeight of an element. Presently, the element is attached and then the offsetWidth and Height are tested, after which the element is remove. It looks ...
0
votes
1answer
100 views

What's the workaround when Firefox 4 reports inconsistent offsetWidth for table cells

I have a Gantt chart type web control: an html table of cells (one cell represents one day for example) and some absolutely positioned divs representing the bars - the parent element of the div is the ...
0
votes
3answers
166 views

Safari is returning the wrong width value

Hi I have a table with a div in it the table has 2 columns and both are 50% In most browsers I can use offsetWidth to get the width of the article. But in Safari the width is less or more than what ...