Sep 26, 2005 #1 pet41 Programmer Sep 13, 2005 16 NO Hi I trie to hide a table in a parent frame (topframe) when user enter the site. I tought it was possibel with parent.topframe.besk.style="display:none";, but I got Member not found. Is there other way to do this? Thanks in advanced Rune
Hi I trie to hide a table in a parent frame (topframe) when user enter the site. I tought it was possibel with parent.topframe.besk.style="display:none";, but I got Member not found. Is there other way to do this? Thanks in advanced Rune
Sep 26, 2005 #2 cLFlaVA Programmer Jun 14, 2004 6,450 US [tt]parent.frames['topframe'].getElementById('besk').style.display = 'none';[/tt] or possibly [tt]top.frames['topframe'].getElementById('besk').style.display = 'none';[/tt] *cLFlaVA ---------------------------- [tt]your mom goes to college[/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url] Upvote 0 Downvote
[tt]parent.frames['topframe'].getElementById('besk').style.display = 'none';[/tt] or possibly [tt]top.frames['topframe'].getElementById('besk').style.display = 'none';[/tt] *cLFlaVA ---------------------------- [tt]your mom goes to college[/tt] [URL unfurl="true"]http://www.coryarthus.com/[/url]
Sep 26, 2005 Thread starter #3 pet41 Programmer Sep 13, 2005 16 NO Thank you very much. This has give me a lot of trouble. You see, I am new to javascript. Used only vbscript before. Upvote 0 Downvote
Thank you very much. This has give me a lot of trouble. You see, I am new to javascript. Used only vbscript before.