Forum Moderators: open
document.frm.Submit.disabled=false;
On the next page I have a back button that uses this code:
onClick='history.go(-1)'
This works fine in IE7, but in Firefox 3.x it leaves the next button still disabled.
How can I make it work in Firefox as in IE7 ?
Thanks
Are you certain that document.frm.Submit.disabled=false; is executing? For example, if there was an error in your JavaScript before this line that caused it to stop processing, then that could cause the behavior you describe. I just tried a quick test and it seems to work correctly for me.