Wrox Programmer Forums
|
Javascript General Javascript discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 11th, 2006, 04:15 PM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 139
Thanks: 0
Thanked 0 Times in 0 Posts
Default iframe onLoad

I have this iFrame, that when it loads, changes the page, etc.. called the testLoader() function, which for now is only an alert box.
<iframe src="about:blank" onLoad="testLoader();"></iframe>

The issue is that when I on the fly create the iFrame, the onLoad function doesn't trigger the testLoader function.. I have changed the page of the iframe in hopes of getting the alert but to no avail.

function createIframe(id,app)
{
//method 1
 nIframe = document.createElement("iframe");
 nIframe.id = id
 nIframe.attachEvent('onLoad',app);
 document.body.appendChild(nIframe);

//method 2
 nIframe = document.createElement("<iframe id='" + id + "' onLoad='" + app + "'></iframe>");
 document.body.appendChild(nIframe);
}

If anyone has any idea, please let me know...

 
Old January 11th, 2006, 04:42 PM
Friend of Wrox
 
Join Date: Mar 2004
Posts: 139
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Disregard, I found my mistake...






Similar Threads
Thread Thread Starter Forum Replies Last Post
Onload with AJAX Baco Intro Programming 0 June 11th, 2007 12:46 PM
values from one iframe to another iframe URGENT raaj Beginning PHP 2 February 27th, 2007 12:19 PM
onLoad functionality NEO1976 Javascript 0 May 23rd, 2006 09:38 AM
audio onLoad Larson HTML Code Clinic 2 February 21st, 2004 12:39 AM
two script onLoad mateenmohd Javascript 2 December 28th, 2003 12:12 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.