Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 16th, 2007, 12:51 PM
Registered User
 
Join Date: Aug 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Taking the HTML and Displaying it in iFrame

I am trying to pull the HTML from an iFrame named viewLook, and have it display the HTML in the same iFrame. This is the code I've coded, but doesn't work.

Code:
var obj = document.getElementById("viewLook").contentWindow.outerHTML;
    document.getElementById("viewLook").contentWindow.innerHTML = obj;
I was hoping someone could point out what I was doing wrong. Thank you.

 
Old August 17th, 2007, 12:16 AM
Authorized User
 
Join Date: Jul 2007
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to vksingh24
Default

use the code like this

var obj=document.getElementById("viewLook").contentWin dow.document.body.innerHTML;

document.getElementById("viewLook").contentWindow. document.body.innerHTML=obj;


:)

__________________
Vikash Kumar Singh





Similar Threads
Thread Thread Starter Forum Replies Last Post
How to Display Html file into IFrame(other contro vishnu108mishra ASP.NET 2.0 Professional 4 November 24th, 2007 01:07 AM
How to display an html file inside Iframe --need u vishnu108mishra BOOK: ASP.NET 2.0 Instant Results ISBN: 978-0-471-74951-6 1 November 16th, 2007 04:52 AM
Displaying textarea content to html table keithc Pro PHP 2 December 1st, 2006 03:12 AM
displaying html in a .aspx webpage badgolfer ASP.NET 1.0 and 1.1 Basics 0 February 22nd, 2005 10:50 AM
Displaying html link in a cell Shyam Javascript How-To 2 November 1st, 2003 07:22 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.