A website copy with HTTrack
Cedarpoint August 2002
project name: CedarpointWeb(URL) addresses:
www.cedarpoint.com
www.cedarfair.com
amount of time: 3 hours (56k modem)
problems:
Pull Down ListsIn the end of the capture, the menu "choose a height category" (inside the park) doesn't work.
Other examples with similar difficulties: The Engine Room | Gulliver's Theme Park
solutions:
- With inforapid search and replace , for example, find all the files with the string: option value="60rides.html" (14 files)
- In all these files, before the tag </head> or anywhere else, add this javascript function:
<script type="text/javascript"> function change() { current = document.form1.menu1.selectedIndex; window.location= document.form1.menu1[current].value; } </script> - With inforapid search and replace search for the string <select name="menu1" size="1"> and replace it by <select name="menu1" size="1" onchange="change();">
- In all these files, here is the new and functional form:
<form action="http://www.cedarpoint.com/public/insidpark/rides/_link.cfm" method="post" name="form1" id="form1"> <p align="center"> <select name="menu1" size="1" onchange="change();"> <option value="index.html">Choose a height category</option> <option value="60rides.html">60 " and taller </option> <option value="54rides.html">54" to under 60"</option> <option value="52rides.html">52" to under 54"</option> <option value="48rides.html">48" to under 52"</option> <option value="46rides.html">46" to under 48"</option> <option value="42rides.html">42" to under 46"</option> <option value="36rides.html">36" to under 42"</option> <option value="under36.html">Under 36 inches</option> <option value="infant.html">Hand-held infant</option> <option value="allrides.html">All the Rides</option> </select> <br>; <input type="checkbox" name="defimg" value="1" checked>; <span class="text">;Include images with descriptions</span>; <br>; <input type="submit" name="goButton" value="Show Ride Listing">; </p>; </form>;
A few menus: State codes, pdf file production, schedules, directions are not always completely captured. They do not or cannot work offline (pdf).
Some, as group sales, work without modification.
Top of the page