Advertisement
iGorNoiZe

sendID

Apr 21st, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <input type="submit" name="submit_button" class="makeOrder button get_order" value="Отправить" />
  2. $('.get_order').click(function(){
  3. // $(this).parents("#orderForm").find(".count-item").val();
  4. var qntgoods = $(this).parents(".wrap_form").find(".count-item").val();
  5. $(this).parents(".wrap_form").find('.qnt-item').val(qntgoods);
  6. //$(this).parents("#orderForm").find('.price-item').val()
  7. var pricegoods = $(this).parents(".wrap_form").find('.price-item').val();
  8. var resultsend = pricegoods * qntgoods;
  9. $(this).parents(".wrap_form").find('.price-item').val(resultsend);
  10. }
  11. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement