Learning Web App Development

by Semmy Purewal

spans should be buttons

page 174

17 May 2014

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.