I am looking for a script that will block or remove an order button to prevent customers from double or triple ordering but clicking the button more then once. I don’t know what something like this would be called. But the site was developed in Classic .asp. However I’m going to guess and say this would be javascript or jquery on an image button? Any suggestion or points for this would be a big help!!!!
Thanks,
Having seen your comment on ianpgall’s answer, I think the best solution would be a server-side check of the customer’s order.
When they click the button and submit the form, check to see if they have already added the product to their basket. If they have you can either choose not to add it again, or ask the user to confirm.
This allows users to click the button more than once if they want to, and also prevents adding the product erroneously if the user has javascript disabled.