<html>
<head>
<script type="text/javascript" src="http://parrot.km.ua/form/jquery.js"></script>
<script type="text/javascript" src="http://parrot.km.ua/form/scripts.js"></script>
</head>
<body>
<center> <font size="5" color="#848484">Калькуляция стоимости сувениров </font></center>
<div id="full_calc">
<form id="forma" method="post" name="forma">
<div id="type_of_site">
<select id="type_site" name="type_site">
<option value='сувенир' >Выберите тип сувенира</option>
<option value='Фотомагнит'>Фотомагнит</option>
<option value='Фотокружка'>Фотокружка</option>
<option value='Футболка'>Футболка</option>
</select>
</p>
<p><input type="submit" name="type_site" *!*id="type_site_2"*/!* value="Оформить"></p>
</div>
<p id="tipus"></p>
<div id="config_site">
</div>
</body>
</html>
// JavaScript Document
$(document).ready(function() {
*!*$("#type_site_2").on("submit"*/!*, function() {
var typeOfSite = $("#type_site :selected").val(),
formOftype = $("#config_site");
/* Обнуляем общую и сумм с НДС в поле вывода */
$("#summ span").text("0");
$("#summ_nds span").text("0");
/* Выбираем соответствующую форму из файла */
formOftype.load("/form/fullform.php",{option:typeOfSite});
/* Выбираем все чекбоксы которые были подгружены, в этом нам поможет функция live */
formOftype.live("change",function() {
/* При проведении действий пересчитываем сумму в зависимости от выбраных чекбоксов */
var totalSum = 0, /* Полную сумму сначала приравниваем к нулю */
totalSumNDS = 0;
/* Пересчитываем все радиобоксі которые отмечены галочкой*/
$("input[type=radio]:checked") .each(function() {
totalSum += parseInt($(this).val());
});
/* Приплюсовываем сумму стоимости CMS */
/* Приплюсовываем сумму стоимости CMS */
/* Каждое поле ввода проверяем на введеное значение, если больше нуля то считаем его */
$("#inputCell").each(function() {
var inputCell = parseInt($("#inputCell").val()) * parseInt($("#inputCell").attr("name"));
totalSum *= inputCell ;
});
/* Пересчитываем все чекбоксы которые отмечены галочкой*/
$("input[type=checkbox]:checked") .each(function() {
totalSum += parseInt($(this).val());
});
/* Подсчет и вывод суммы итоговой */
totalSumNDS = totalSum * 1.18 ;
$("#summ span").text(totalSum);
$("#summ_nds span").text(totalSumNDS);
});
});
});