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
Which tag is a block element?
<div> <img> <span>
<div>Web Programming and Development</div>
Which CSS code displays the text underlined?
font-style: italic; text-decoration: underline; font-weight: 500;
h2 {
  text-decoration: underline;
}
Click on the JavaScript function that can access other function after a specified time.
insertBefore() setTimeout() querySelector()
function someFunction() { alert("CoursesWeb.net"); }
setTimeout("someFunction()", 2000);
Click on the instruction that returns the number of items of a multidimensional array in PHP.
count($array) count($array, 1) strlen()
$food =["fruits" =>["banana", "apple"), "veggie" =>["collard", "pea"));
$nr_food = count($food, 1);
echo $nr_food;       // 6
Get and Modify content of an Iframe

Last accessed pages

  1. Date and Time in ActionScript 3 (10091)
  2. jQuery parent, children and nth-child() (13873)
  3. RegExp - Regular Expressions in ActionScript (4713)
  4. JavaScript strip_tags and stripslashes (8829)
  5. Complex Shapes with a single DIV and CSS (3711)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (643)
  2. The Mastery of Love (75)
  3. CSS cursor property - Custom Cursors (71)
  4. Read Excel file data in PHP - PhpExcelReader (67)
  5. PHP-MySQL free course, online tutorials PHP MySQL code (48)