Skip to content
Advertisement

changing cart items quantity in shopping cart using vanilla javascript

I am building an eCommerce website with Django and I am trying to change the quantity of items in my shopping cart using pure JavaScript.

I have been able to select and click on the increase and decrease buttons using a query selector, but when I click on any of those buttons only the first item in the cart updates. The remaining buttons do not increase the quantity of the items associated with it.

What should I do?

This is the JavaScript code:

JavaScript

This is the HTML code:

JavaScript

Advertisement

Answer

I understand that your intention is to increment or decrement the value cart-quantity-input by one with the minus1 and add1 buttons. However, on your script, for each minus1 button, you are getting all of the cart-quantity-input when you used document.getElementsByClassName (hint: it reads as for current document, get all elements with that class name). To select the box next to those buttons, you need to navigate through the HTML structure. take a look at the script below:

JavaScript

I used element.nextElementSibling and element.previousElementSibling to tell the page that I want the element next to them, which on both cases is the cart-quantity-input box.

Of course, if you add an element between the buttons and the input box, or if you encapsulate them in another element, the script above will fail. There are other navigation functions that are available around. Please check them out.

Advertisement