How to show total price by increasing the quantity in the product page

Hi,

I there any way to calculate some values of product like like if quantity is 2 then how to view { (Product Price *Qunatiy)/3 } = Area

please help me how to do this i want like this https://www.awesomescreenshot.com/video/5536281?key=89c9d3749e2954aa5e8bc90666ab5674

I want this feature in Product page

Yes, I would do this in Javascript:

  1. On page load, set an event listener on the quantity selector

  2. On change quantity event, grab the quantity + the price and run your calculation

  3. Fill in the results in the div you have allocated to show to the user

Hi @JoesIdeas

Please tell me the code please