ABCD (x007)

Race #346

View Pit Stop page for race #346 by x007Ghost race

View profile for ABCD (x007)

Official speed 39.74 wpm (109.31 seconds elapsed during race)
Race Start October 2, 2018 2:11:57pm UTC
Race Finish October 2, 2018 2:13:47pm UTC
Outcome No win (3 of 3)
Accuracy 98.0%
Points 32.46
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 + '

'); });