View Pit Stop page for race #2 by gauntel — Ghost race
View profile for Michael (gauntel)
| Official speed | 61.00 wpm (71.21 seconds elapsed during race) |
|---|---|
| Race Start | October 16, 2018 12:42:55pm UTC |
| Race Finish | October 16, 2018 12:44:06pm UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 98.0% |
| Points | 49.82 |
| Text | #10012 (Length: 372 characters) var $form, width, height, area; $form = $('#calculator'); $('#calculator').on('submit', function(e) { e.preventDefault(); console.log('Clicked submit...'); width = $('#width').val(); height = $('#height').val(); area = (width * height); if (area < 100) { debugger; // A breakpoint is set if the developer tools are open } $form.append(' ' + area + ' '); }); |