See the following code...
<div style="position:absolute;top:0px;left:0px;z-index:1000;height:200px;width:200px">
This is overlapped area !!
</div>
<table style="dispaly:none;position:absolute;top:0px;left:0px">
<form>
<tr>
<td>Enter your name
</td>
<td><input type=text size=20>
</td>
</tr>
</form>
</table>
if i m traversing dom say
for(i=0;i<document.forms[0].elements.length ; i++)
{
//document.forms[0].elements[0].style.visible
How to know if current element is not visible due to parent element's display property is none ??
//document.forms[0].elements[0].style.zIndex
How to know if current element is cliped my other element's Z-Index is to large of current element but its overlaping it... ??
}
Very much thankful, if anyone reply...



Reply With Quote

Bookmarks