Guest User

Untitled

a guest
Apr 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <h4>Стоимость</h4>
  2. <p class="price">
  3. <span id="final_price_yslug">0</span> Руб.
  4. </p>
  5. <label for="yslygi">Верхняя торцевая перегородка</label>
  6. <input type="checkbox" class="a1" id="yslygi" name="peregorodka" checked /><br/>
  7. <label for="yslygi2">Борта у стены</label>
  8. <input type="checkbox" class="a1" id="yslygi2" name="bort" />
  9.  
  10. $('input.a1').on("click",function(){
  11.  
  12. var sum2 = 0;
  13.  
  14. if ($("#yslygi").is(':checked')) {
  15. sum2 += 500;
  16. }
  17. if ($("#yslygi2").is(':checked')) {
  18. sum2 += 500;
  19. }
  20. $('#final_price_yslug').html(sum2);
  21. });
Add Comment
Please, Sign In to add comment