This assignment asks you to write a web page that contains two links. When the web page opens, it should also open a little window containing an image. When clicked, the two links on the main page should swap different images into the little window. Make sure that index.html and image_page.html are in the same directory.

index.html

The index.html file opens the little window.M

<html> <head> <title>Chapter 5 Assignment</title> <script type = "text/javascript"> <!-- hide me from older browsers // open the little window with the page image_page.html and call the // little window the_window // var the_window = window.open("image_page.html","the_window","width=100,height=100"); // show me --> </script> </head> <body> <h1>Play with a little window</h1> ...

Get The Book of JavaScript, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.