View Pit Stop page for race #13 by deroche1 — Ghost race
View profile for deroche (deroche1)
| Official speed | 78.72 wpm (55.18 seconds elapsed during race) |
|---|---|
| Race Start | February 14, 2019 3:09:39am UTC |
| Race Finish | February 14, 2019 3:10:34am UTC |
| Outcome | No win (2 of 3) |
| Opponents |
1. sidd_ (91.34 wpm) |
| Accuracy | 97.0% |
| Points | 64.29 |
| 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 + ' '); }); |