I'm having an issue with a form page i created, it works fine in Firefox but causes an error in IE 7.
i have a script file where in it it set a:
var fReq = new Array();
Then follows some functions.
On the html file this file is included in the <head> i had to change the link to include language="JavaS cript" to fix some errors but was still left with 1 error.
On the bottom of the page right after i close <form> i have a small script tag to run set some variables;
Here it tells me that fReg isn't set and off course when i try to use it i get same error object not defined.
I'm sure it's something that it's just incompatible haven't looked into the button disabled issue. Was wondering if that isn't running just because java fails on before that.
Thanks for any help
i have a script file where in it it set a:
var fReq = new Array();
Then follows some functions.
On the html file this file is included in the <head> i had to change the link to include language="JavaS cript" to fix some errors but was still left with 1 error.
On the bottom of the page right after i close <form> i have a small script tag to run set some variables;
Code:
<script language='JavaScript' type='text/javascript'>fButton = 'postnewthread'; fReq[0] = ''; fReq[1] = ''; fReq[2] = ''; fReq[3] = ''; document.forms['inputform'].elements[fButton].disabled = true;</script>
I'm sure it's something that it's just incompatible haven't looked into the button disabled issue. Was wondering if that isn't running just because java fails on before that.
Thanks for any help
Comment