Код: Выделить всё
$('#calculateButton').click(function() {
// Get the values from the input fields
var num1 = parseFloat($('#input1').val());
var num2 = parseFloat($('#input2').val());
// Perform the calculation
var result = num1 + num2;
// Display the result
$('#result').text('Result: ' + result);
});Код: Выделить всё
Calculate
На настольном компьютере работает как положено, но не работает только на мобильном устройстве
Подробнее здесь: https://stackoverflow.com/questions/783 ... -on-mobile
Мобильная версия