Javascript Course

• Another useful tutorial about JavaScript and iframe on the page:
coursesweb.net/javascript/frame-iframe-object


In this tutorial it is present the mode to get and modify content in an IFRAME, from the main page, using JavaScript.

It is important to know that the page that is included in IFrame must be on the same server as the main page which contains it, or else it will not work for security reasons.


Going straight to the point, to get and modify the content of an IFrame, you can use the contentWindow property, it returns the window object of a specified iframe.
Here's an example to understand how to apply this property.

1) First create a file "ifr.htm" that will contain the HTML code of the page that will be displayed in the IFrame.

Code ifr.htm

<html>
<head><title>Iframe page</title></head>
<body>
 Content to be displayed in iframe ...
</body>
</html>

2) Define the main page, for example "main.html" (in the same folder on the server), in which write the code to include the IFrame and the JavaScript that will retrieve and modify the content of the IFrame.
- Necessary explanations are in the script code.

Code main.html

<html>
<head><title>Main page</title></head>
<body>
<script>
function get_iframe(ifr_id) {
 // gets the object that refers to the iframe, uasing its id
 var myIFrame = document.getElementById(ifr_id);

 // Apply the property "contentWindow" to myIFrame object
 // In this way we get the iframe content
 var content = myIFrame.contentWindow.document.body.innerHTML;
 alert("Content: \n" + content); // Displays an Alert with the data from iframe
 
 // Define a new text that will replace the content of the iframe
 content = '<font color="blue">Text added with Javascript, from the main page</font>';

 // Modify the iframe content
 myIFrame.contentWindow.document.body.innerHTML = content;
}
</script>

<h3>Main page</h3>
<a href="#" onclick="get_iframe('ifr')">Retrieve /Modify IFrame</a><br><br>
<iframe src="ifr.htm" id="ifr" name="ifr"></iframe>
</body>
</html>

- This example will display the following result:

The main page

Retrieve /Modify IFrame

Content to be displayed in iframe ...
- When you click the link "Retrieve /Modify IFrame", the function "get_iframe()" will be called, that gets the content from the Iframe, and displays it in an Alert window, then sets a text to replace the iframe content. If you click again, it will retrieve and display the new content.

Another way to access the content of an iframe is to use the top.iframeName instruction. With this method you can access JavaScript variables and functions defined in the iframe with specified 'iframeName'.
This method is presented in the next tutorial, in which you will see how to get and modify the content of an IFrame by accessing a JS script that is created in another IFrame.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
What attribute makes a radio button or checkbox input selected?
checked="checked" selected="selected" disabled="disabled"
<input type="checkbox" name="a_name" value="value" checked="checked" />
What CSS value scales the background image to the largest size contained within the element?
repeat-x contain linear-gradient
#id {
  background:url("path_to_image.png");
  background-size:contain;
  background-repeat:no-repeat;
}
What operator is used to determine the rest of the division of two numbers?
% * /
var rest8_7 = 8 % 7;
alert(rest8_7);
Indicate the PHP function that rounds a number up to the next highest integer.
floor() ceil() abs()
$nr = ceil(3.5);
echo $nr;        // 4
Get and Modify content of an Iframe

Last accessed pages

  1. Node.js Move and Copy file (28283)
  2. JavaScript trim, rtrim and ltrim (13046)
  3. Get and Modify content of an Iframe (32110)
  4. SHA1 Encrypt data in JavaScript (35351)
  5. Output or Force Download MP3 with PHP (5673)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (26)
  2. Read Excel file data in PHP - PhpExcelReader (10)
  3. SSEP - Site Search Engine PHP-Ajax (8)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (7)
  5. Get Duration of Audio /Video file before Upload (7)