@@ -28,7 +28,7 @@ function onSelect() {
28
28
console.log($('#chapters').val());
29
29
window.location = $('#chapters').val();
30
30
}
31
- </script>
31
+ </script>
32
32
<div style="float:right">
33
33
<select id="chapters" onchange="onSelect();">
34
34
<option <?= x_sel ("01-intro " ) ?> >Chapter 1: Introduction</option>
@@ -52,12 +52,39 @@ function onSelect() {
52
52
53
53
<?php
54
54
echo ($ body );
55
+
56
+ $ OUTPUT ->footerStart ();
55
57
?>
56
58
<hr/>
57
59
<p>
58
60
If you find a mistake in this book, feel free to send me a fix using
59
61
<a href="https://github.com/csev/py4e/tree/master/book3" target="_blank">Github</a>.
60
62
</p>
63
+ <script>
64
+ function onSelectFooter() {
65
+ console.log($('#chapters_footer').val());
66
+ window.location = $('#chapters_footer').val();
67
+ }
68
+ </script>
69
+ <div style="float:right">
70
+ <select id="chapters_footer" onchange="onSelectFooter();">
71
+ <option <?= x_sel ("01-intro " ) ?> >Chapter 1: Introduction</option>
72
+ <option <?= x_sel ("02-variables " ) ?> >Chapter 2: Variables</option>
73
+ <option <?= x_sel ("03-conditional " ) ?> >Chapter 3: Conditionals</option>
74
+ <option <?= x_sel ("04-functions " ) ?> >Chapter 4: Functions</option>
75
+ <option <?= x_sel ("05-iterations " ) ?> >Chapter 5: Iterations</option>
76
+ <option <?= x_sel ("06-strings " ) ?> >Chapter 6: Strings</option>
77
+ <option <?= x_sel ("07-files " ) ?> >Chapter 7: Files</option>
78
+ <option <?= x_sel ("08-lists " ) ?> >Chapter 8: Lists</option>
79
+ <option <?= x_sel ("09-dictionaries " ) ?> >Chapter 9: Dictionaries</option>
80
+ <option <?= x_sel ("10-tuples " ) ?> >Chapter 10: Tuples</option>
81
+ <option <?= x_sel ("11-regex " ) ?> >Chapter 11: Regex</option>
82
+ <option <?= x_sel ("12-network " ) ?> >Chapter 12: Networked Programs</option>
83
+ <option <?= x_sel ("13-web " ) ?> >Chapter 13: Python and Web Services</option>
84
+ <option <?= x_sel ("14-objects " ) ?> >Chapter 14: Python Objects</option>
85
+ <option <?= x_sel ("15-database " ) ?> >Chapter 15: Python and Databases</option>
86
+ <option <?= x_sel ("16-viz " ) ?> >Chapter 16: Data Vizualization</option>
87
+ </select>
88
+ </div>
61
89
<?php
62
-
63
- $ OUTPUT ->footer ();
90
+ $ OUTPUT ->footerEnd ();
0 commit comments