943,865 Members | Top Members by Rank

Ad:
Nov 3rd, 2008
0

using javascript to alter css of iframe div

Expand Post »
hi

i have a parent window with an external url iframe. when the parent loads i want to set the iframe footer to display:none;. is there a way to do this? i have looked all over w/no luck.

thanks
Similar Threads
Reputation Points: 37
Solved Threads: 1
Posting Whiz in Training
cmills83 is offline Offline
249 posts
since Jun 2004
Nov 11th, 2008
0

Re: using javascript to alter css of iframe div

Click to Expand / Collapse  Quote originally posted by cmills83 ...
hi

i have a parent window with an external url iframe. when the parent loads i want to set the iframe footer to display:none;. is there a way to do this? i have looked all over w/no luck.

thanks

I hope this should solve your problem:

JavaScript / DHTML / AJAX Syntax (Toggle Plain Text)
  1. <script language="JavaScript">
  2. function changeCSS(){
  3. frame = window.document.frames[0];
  4. frame.document.getElementById("myDiv").style.background="red";//OR ..style.display="none";
  5. }
  6. </script>
  7. <a href="javascript:changeCSS()">Click Here here to Change Iframe CSS</a>
  8. <br>
  9. <iframe src="frame.htm" name="myFrame" id="myFrame"></iframe>

frame.htm should have a div tag with the ID as "myDiv".

Regards.
Last edited by sasankasekhar; Nov 11th, 2008 at 3:25 am. Reason: Comments left out
Reputation Points: 10
Solved Threads: 3
Newbie Poster
sasankasekhar is offline Offline
24 posts
since Jan 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in JavaScript / DHTML / AJAX Forum Timeline: Javascript
Next Thread in JavaScript / DHTML / AJAX Forum Timeline: Get all children and their childeren - not innerHTML





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC