diff options
author | ivan <ivan> | 2011-04-26 23:47:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-26 23:47:56 +0000 |
commit | e7c2224fdf499bd9cdf3759920378ec360eb965e (patch) | |
tree | 853a19b34f166d7c13764740ecbbbc264082c3d3 | |
parent | 59c422112fc751ad8b31cad9a386a1d745c1821f (diff) |
fix DSL qualifications w/chrome, RT#7111
-rw-r--r-- | httemplate/misc/qual.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/httemplate/misc/qual.html b/httemplate/misc/qual.html index 78d85edca..6df8daae4 100644 --- a/httemplate/misc/qual.html +++ b/httemplate/misc/qual.html @@ -2,7 +2,11 @@ <% include('/elements/error.html') %> -<FORM NAME="QualForm" ACTION="<% $p %>edit/process/qual.cgi" METHOD="POST"> +<FORM NAME = "QualForm" + ACTION = "<% $p %>edit/process/qual.cgi" + METHOD = "POST" + onSubmit = "document.QualForm.submitButton.disabled=true;" +> <INPUT TYPE="hidden" NAME="<%$cust_or_prospect%>num" VALUE="<% $custnum_or_prospectnum %>"> @@ -56,7 +60,11 @@ </TABLE> <BR> -<INPUT type="submit" VALUE="Qualify" onClick = "this.disabled=true;"> +<INPUT TYPE = "submit" + NAME = "submitButton" + ID = "submitButton" + VALUE = "Qualify" +> </FORM> </BODY> |