View Pit Stop page for race #2 by tbodt — Ghost race
View profile for tbodt (tbodt)
Official speed | 76.35 wpm (56.90 seconds elapsed during race) |
---|---|
Race Start | January 2, 2019 3:20:36am UTC |
Race Finish | January 2, 2019 3:21:33am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 62.36 |
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 + ' '); }); |