(sidd_)

Race #20

View Pit Stop page for race #20 by sidd_Ghost race

View profile for (sidd_)

Official speed 87.78 wpm (49.49 seconds elapsed during race)
Race Start October 3, 2018 5:53:37pm UTC
Race Finish October 3, 2018 5:54:27pm UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 71.69
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 + '

'); });