I'm trying to get the height of an initially hidden div element in Netscape and Firefox using javascript (it works fine in IE). I have tried using MyElement.scrollHeight, MyElement.offetHeight, MyElement.style.height and many different ways of setting the element initially visible, getting the height and then hiding it again. I keep getting a value of 0. Any thoughts?
|
|
Correct me if I'm wrong (Which I may be), but from doing some research, elements with display: none have no height. To get the height, you would need to unhide them, get the height, then rehide them. Issues like this have popped up in the past like so: jQuery: height()/width() and "display:none" jQuery: Get height of hidden element in jQuery (Both jQuery examples, but you get the point) |
|||
|
|
|
Hidden elements in Netscape is not accessible. you can set that position with styling hole of div out of your screen. for example move it to -9999 on top left. then you can access that's attributes like height and width. you can also visible that element and get your attribute and hide it again, but it is not usual because your element will be show a little bit of the second and user maybe feel jumping on screen. |
|||||
|