I have this (sorry if you not using fixed spacing font
|----------|---------------------|
| Frame_1 | Frame_2 |
| | |----------------| |
| | | IFrame_1 | |
| | |----------------| |
| | |
| | <a onClick=... |
|----------|---------------------|
I.e. my application has been embedded in a frameset at from a third
party.
I'm using an iframe - here "IFrame_1" that I'm reloading then a user
clicks an <a> link - code looks like this:
<a href='#' onClick="parent.Iframe_1.location='test.html';">.. .</a>
This works fine when my page is not embedded in a frameset. However,
when it is, I am getting a JavaScript run time error:
Error: parent.IFrame_1 is null or not an object
Anyone has a hint?
Thanks!
-nets