basic-javascript-07-complex-frameset-page.htm / htm
<html> <head> <title>The complex frameset page</title> <script language="JavaScript" type="text/javascript"> var pagesVisited = new Array(); function returnPagesVisited() { var returnValue = "So far you have visited the following pages\n"; var pageVisitedIndex; var numberOfPagesVisited = pagesVisited.length; for (pageVisitedIndex = 0; pageVisitedIndex < numberOfPagesVisited; pageVisitedIndex++) { returnValue = returnValue + pagesVisited[pageVisitedIndex] + "\n"; } return returnValue; } function addPage(fileName) { var fileNameStart = fileName.lastIndexOf("/") + 1; fileName = fileName.substr(fileNameStart); pagesVisited[pagesVisited.length] = fileName; return true; } </script> </head> <frameset cols="200,*"> <frame name=fraMenu src="menu_page.htm"> <frame name=fraMain src="main_page.htm"> </frameset> </html>
(C) Æliens 20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.