Guest User

Untitled

a guest
Feb 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. {% if has_items %}
  2. <script>
  3. document.addEventListener("DOMContentLoaded", function(event) {
  4. {% for item in cart.items %}
  5. $('.cart-item--quantity:nth-child({{ forloop.index }})')
  6. .empty()
  7. .append({{ item.quantity }})
  8. .append('<input type="hidden" value="{{ item.quantity }}" name="updates[]" id="updates_{{ item.key }}">');
  9. {% endfor %}
  10. });
  11. </script>
  12. {% endif %}
Add Comment
Please, Sign In to add comment