I have added a simple javascript to make all 4 of the buttons on my form invisible when the "Submit by Email" button is clicked which works fine. My question: if the user changes their mind and needs to change something on the form, the buttons are all now invisible, how can I make them visible again?
My script on the email button on the mouse down event is this:
if (this.event__click)
emailbutton.presence = "invisible";
(etc. for the other 3 buttons)
Is there a better way to hide them?