здравствуйте, имеется простенький калькулятор
<script>
jQuery(function () {
function GetPrice() {
var price = 0;
start = jQuery("#s1").val();
end = jQuery("#s2").val();
i = Math.floor(start);
while (i < Math.floor(end)) {
if (i >= 1 && i < 6) {
price += 79;
}
if (i >= 6 && i < 10) {
price += 139;
}
if (i >= 10 && i < 13) {
price += 210;
}
if (i >= 13 && i < 14) {
price += 290;
}
if (i >= 14 && i < 15) {
price += 490;
}
if (i >= 15 && i < 16) {
price += 590;
}
if (i >= 16 && i < 17) {
price += 890;
}
if (i >= 17 && i < 18) {
price += 1250;
}
i += 1;
}
if (price != 0) {
jQuery('#paymentamount').val(price);
jQuery('#q_paymentamount').val(price);
jQuery('#card_paymentamount').val(price);
jQuery('#yd_paymentamount').val(price);
jQuery('#wm_paymentamount').val(price);
jQuery('#OutSum').val(price);
}
}
jQuery("#s1").change(function(e) {
jQuery("#i1").attr({
"src":'https://csgo.boostacc.ru/wp-content/uploads/2016/02/img/' + jQuery("#s1").val()+".png"
});
GetPrice();
});
jQuery("#s2").change(function(e) {
jQuery("#i2").attr({
"src":'https://csgo.boostacc.ru/wp-content/uploads/2016/02/img/' + jQuery("#s2").val()+".png"
});
GetPrice();
});
});
</script>
Итоговые значения которого (paymentamount, q_paymentamount и пр они одинаковы) требуется передать переменной
$peremennya =
Как это сделать?