Dec 30, 2002 #1 IonCurici Programmer Oct 29, 2002 24 MD i have a <iframe name="main"> what i get from the browser is that parent.frames[0] (or parent.main) is null or not an object. any ideas?
i have a <iframe name="main"> what i get from the browser is that parent.frames[0] (or parent.main) is null or not an object. any ideas?
Jan 3, 2003 #2 Supra Programmer Dec 6, 2000 422 US Don't use parent.frames, because <iframe> is an inline frame. Instead, use <b>document.all.main</b>. Upvote 0 Downvote