Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save safrankov/001466cd5d4624de7599e81a3eedc193 to your computer and use it in GitHub Desktop.

Select an option

Save safrankov/001466cd5d4624de7599e81a3eedc193 to your computer and use it in GitHub Desktop.
//Высчитываем комиссию на возврат и записываем значение в кнопку
$('.money-return__input--summ').keyup( function () {
var returnValue = $(this).val();
var calculatedPay = Number(returnValue) - (returnValue / 100 * 5).toFixed();
if(!calculatedPay <= 0){
$('.summWrapper').css('display', 'inline-block');
$('#summFinish').text(calculatedPay);
} else {
$('.summWrapper').css('display', 'none');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment