function sum(a, b) {
return a * b;
}
function getNumber() {
return Math.round(Math.random()*9);
}
function addLine(a, b) {
var line = '<div><span class="a">'+ a + ' * </span><span class="b">' + b + ' =</span><input class="result"> <b class="bingo"></b></div>';
$('#starter').append(line);
}
function checkResultAndGoNext(val, a, b) {
if(val == sum(a, b)) {
}
}
$('#start').on('click', function() {
var a = getNumber(),
b = getNumber();
addLine(a, b);
bindKeyup();
});
function bindKeyup() {
$('.result').on('keyup', function() {
var val = $(this).val(),
a = parseInt($(this).parent().find('.a').text()),
b = parseInt($(this).parent().find('.b').text())
if(val == sum(a, b)) {
$(this).attr('disabled', true);
$('.bingo').text('Урааа, ответ верный!!!11');
a = getNumber();
b = getNumber();
addLine(a, b)
bindKeyup()
}
});
}
var file = false;
$('form input[type=file]').on("change", function() {
if ($('form input[type=file]').val() != '') {
$('form input[type=submit]').trigger('click');
file = true;
} else {
// $('form input[type=submit]').hide();
}
});
$(window).on("unload", function(){
if (file == true){
console.log("загружен");
} else {
console.log("отправить письмо аяксом");
}
});