I am working on one project where I need to create an order form
I got a very good example from http://css-tricks.com/examples/DynamicOrderForm/.
But the problem is that the pricing here is fixed, but I need a textbox for pricing so I can change pricing also.
I tried to make it work, but failed.
Thanks for your help.
go down and search for
and edit the prices within the “span” tag with your price. If you want a textbox
then in order.js check where the calculations are being taken place and there you can read the value of this textbox instead of reading static value of span tag. Find following line in order.js
instead of
you can use
Hope this helps