spans should be buttons
There are a couple of instance on pagees 174-175 where code that looks like this
$button = $("<span>").text("+");
should look like this
$button = $("<button>").text("+");
These errors are left over from an earlier iteration of the Amazeriffic code.
Thanks to David Boles for finding these errors and reporting them.