Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can a jsp file in an IFrame calls a javascript function outside of the

Status
Not open for further replies.

jadeite100

Programmer
May 17, 2006
19
0
0
CA
Hi:

I am using IE 6 SP2.
My resize attribute does not work <body onresize="test1();">.
When I resize my window, the resize event doesnot get call.

I have a jsp page with an iFrame called test1.jsp. The iFrame src points to a page called test2.jsp. It has a resize
attribute that calls a javascript function that is located in test1.jsp.
In the test2.jsp page, it doesn't recognize the function that is located in test1.jsp page. Is there anyway to do this.

test1.jsp:
<html>
<head>
<script type="text/javascript">
function test1()
{
alert("test1.jsp");
}

function test3()
{
alert("test3, called from test2.jsp but code locate at test1.jsp");
}
</script>
</head>

<body onresize="test1();">
This is page 1.
<iframe src=" id="dataFrame" style="height:942.0px;width:100%" scrolling="YES" frameborder="1"></iframe>

</body>
</html>

test2.jsp:
<html>
<head>
<script type="text/javascript">
function test2()
{
alert("test2.jsp");
}
</script>
</head>

<body onresize="test2();test3();">
This is page 2.

</body>
</html>

If the above is not possible, is there another way to capture the event when a popup window is resize or maximize or mimize.
I tried <body onresize="test1();"> it doesn't work. I event tried:
window.onresize=test1 and it doesn't work.

I tried <body onmove="test1();"> It partially works. When I miminize the popup window it triggers the event but when I maximize the popup
window from a smaller popup window it doesn't trigger an event.

Any hint or help or direction to an url would be greatly appreciated.

Yours,

Frustrated.
 
try
parent.FUNCTION_NAME()

in your IFRAME page...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top