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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

window.open and calendar

Status
Not open for further replies.

Pattycake245

Programmer
Oct 31, 2003
497
CA
I am using a js calendar. This calendar is used in dozens of applications on our internal website. On this one application, every once and a while the calendar will be clicked on and an error will come up:

parent."pagename".document.open is not null.

This application is developed with Cold Fusion. I am not sure if I would find a better answer on the Cold Fusion forum so I will try both. My colleague and I were wondering if it has something to do with the javascript not processing fast enough for Cold Fusion. That is just a shot in the dark.

All I am wondering is if anyone else has had something similar to this happen to them.

thanks, Tim
 
Try exactly this simple script:
Code:
<script language="javascript">
parent.blah.document.open();
</script>
Is that's this message, then either blah frame doesn't exist at runtime or blah.document is not in ready state (loading).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top