// 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;
})