On 6/22/2010 11:40 AM, Larry C. Lyons wrote: > forgot to mention the error now is with IE and not firefox. >
Digging a bit farther it might be a case where document.parentWindow is for IE and the browsers that follow it and document.defaultView is for Firefox and the browsers that follow it. I don't know if there are other variations. http://www.reloco.com.ar/mozilla/compat.html I.E. if (document.parentWindow) myMom = document.parentWindow; else if (document.defaultView) myMom = document.defaultView; else myMom = "I can't find my mom"; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-community/message.cfm/messageid:321698 Subscription: http://www.houseoffusion.com/groups/cf-community/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-community/unsubscribe.cfm
