I have a web form that has a button which, when clicked, calls a submit routine:
function doSubmit(){
document.forms[0].submit();
return true;
there is also a $$return field linking to a comfirmation page.
This all worked perfectly until today. As far as I know nothing has changed but now when the “submit your form” button is clicked it brings up a page that is blank accept for the characters " () " at the top left of the page.
I also tried putting the JS “document.forms[0].submit();” directly in the buttons web-javascript. Same thing.
Any ideas?? I’m sure it’s simple but I can not figuire out what is happening.