Hey All,
I have a shopping cart that has an update button and a checkout button. On each line in the shopping cart a quantity field is displayed, users change the quantity, press update and the new price is calculated.
These quantity fields are all within a form tag as inputs and the Update button is the one that controls the forms action.
Trouble is, every once in a while a user will come along, put a new number in the quantity field, not press update and go straight for the checkout button - the user is given plenty of chances to review their order after pressing checkout, but they just don't seem to want to read. This means that they've ordered 1, when they thought they ordered 2... or something like that.
So I'm trying to figure out a way of updating the order before or as the user presses the checkout button.
Does anyone have any suggestions?
I wanted to try and avoid using javascript to disable the checkout button, but at the moment, it's the only method I can think of...
Thanks.