Coldfusion javascript form control to + and - the value in an <input>
So whenever you output the contents of the shoppingCart on screen, you provide an <input> for the user to alter QTY if necessary on each row.
For my v2.0 shopping cart, I'm going to employ a ram based structure to hold the cart. Is there a javascript control that can dynamically change the value in a form's <input> tag ? For example on each row of the RAM based cart, I'd like + and - controls that can change the QTY value in RAM. Is this possible ?
Then I could do without the update cart button.