hi guys, i have one main page with two iframe elements, these two iframe elements is assigned same source file as follows :
mainpage.htm :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
</head>
<body>
<table>
<tr>
<td>
<iframe id="leftPane" src="iframepage.htm" width="300" height="800"></iframe>
</td>
<td>
<iframe id="rightPane" src="iframepage.htm" width="300" height="800"></iframe>
</td>
</tr>
</table>
<script>
window.frames.leftPane.document.onclick = function()
{
window.frames.rightPane.document.getElementById(window.frames.leftPane.window.event.srcElement.id).click();
}
</script>
</body>
</html>
iframepage.htm:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<script type="text/javascript">
function ExpandCollapseTable(titleRow)
{
// if(titleRow.parentNode.childNodes.length > 1)
// {
// if(titleRow.parentNode.childNodes[1].style.display=="block" || titleRow.parentNode.childNodes[1].style.display=="")
// {
// for(var i=1;i<titleRow.parentNode.childNodes.length;i++)
// {
// titleRow.parentNode.childNodes[i].style.display = "none";
// }
// }
// else
// {
// for(var i=1;i<titleRow.parentNode.childNodes.length;i++)
// {
// titleRow.parentNode.childNodes[i].style.display = "block";
// }
// }
// }
alert(titleRow);
}
</script>
</head>
<body>
<table border=1>
<tr onclick="ExpandCollapseTable(this);" style="cursor:pointer;" id="someID">
<td colspan=3>
Table Header(click to expand-collapse)
</td>
</tr>
<tr>
<td style="width: 100px">
1</td>
<td style="width: 100px">
2</td>
<td style="width: 100px">
3</td>
</tr>
<tr>
<td style="width: 100px">
4</td>
<td style="width: 100px">
5</td>
<td style="width: 100px">
6</td>
</tr>
<tr>
<td style="width: 100px">
7</td>
<td style="width: 100px">
8</td>
<td style="width: 100px">
9</td>
</tr>
</table>
<div id="something" onclick="ExpandCollapseTable('alert something');">deneme</div>
</body>
</html>
if you run this application you will see that there is a problem when you click on left hand side table's first row. if you click on the div element, however, there is no problem.
Do you have any idea?