HN user

lukaszg

22 karma
Posts6
Comments5
View on HN
Show HN: Speedsums 12 years ago

// run in firebug and click & enter input... $('#answer').click(function(e){ var value = eval($('#question').text().replace('=', '').replace('÷', '/').replace('x', '*').replace(/\s/g, '')); console.log($('#question').text() + value); this.value = value; })