Current location: Hot Scripts Forums » General Web Coding » JavaScript » Insert iframe before div


Insert iframe before div

Reply
  #1 (permalink)  
Old 05-12-08, 03:59 AM
IcySuMmeR IcySuMmeR is offline
New Member
 
Join Date: May 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Insert iframe before div

Hi, does anyone know how to insert iframe before the div? It kept returing false on the iframe, i don't know what is wrong. Please help...

Does anyone also know how to append a div to the iframe cos i wasn't able to do so too...

HTML Code:
<div id="menuBar"></div>
javascript Code:
  1. function initMainMenu() {
  2.   var obj = document.getElementById("menuBar");
  3.  
  4.   if (browser.isIE) {
  5.     var iframeMain = document.createElement("IFRAME");
  6.     iframeMain.frameBorder = 1;
  7.     iframeMain.style.width = document.body.clientWidth;
  8.     iframeMain.src = "javascript:false;";
  9.     iframeMain.style.zIndex = 5;
  10.     iframeMain.style.position = "absolute";
  11.     obj.parentNode.insertBefore(iframeMain, obj);
  12.   }
  13. }

Last edited by Nico; 05-12-08 at 04:00 AM. Reason: [highlight=javascript] wrappers.
Reply With Quote
  #2 (permalink)  
Old 05-13-08, 07:43 AM
job0107's Avatar
job0107 job0107 is offline
Community Liaison
 
Join Date: Dec 2006
Location: Tacoma, Washington USA
Posts: 3,454
Thanks: 0
Thanked 140 Times in 137 Posts
Your code doesn't work because you have the iframeMain's position property set to absolute. So the iFrame is positioned at left:0, top:0 relative to the body element.

And the iFrame's content equals false because you are using "javascript:false;" as the src of the iFrame.
__________________
Jerry Broughton
Reply With Quote
  #3 (permalink)  
Old 05-13-08, 08:21 AM
job0107's Avatar
job0107 job0107 is offline
Community Liaison
 
Join Date: Dec 2006
Location: Tacoma, Washington USA
Posts: 3,454
Thanks: 0
Thanked 140 Times in 137 Posts
Insert a div into the iFrame
javascript Code:
  1. iframeMain.src = "javascript:document.write('<div>hello</div>');";
__________________
Jerry Broughton
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem with Auto Dealer Script nuzzle PHP 17 04-14-10 08:34 PM
replace iframe for div jonnekke HTML/XHTML/XML 3 03-25-08 10:56 AM
Can't Understand java script maverickminds JavaScript 1 07-16-06 01:23 PM
MySQL table problem perleo PHP 9 12-16-03 01:16 PM


All times are GMT -5. The time now is 11:38 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.