Are they not passed into the Perl script via the input box on the form? You could just use Perl to split the string that was validated by the JavaScript.
It translates to if email is blank or if all of the address fields are blank. It looks like you want it to be if email is blank or if any of the address fields is...
Is there a reason why you need to worry about Shift-tab and tab key presses? I haven't found anything about a keycode being sent for Shift-tab, so you might have to just put up with that default...
I threw the below together to give you a starting point. I'm not sure of a way to match nodes starting with a specific letter. You would probably have to iterate through the entire nodelist and use...
In the case of the snippet I posted, 123px would be parsed to 123 and then compared to 123px returning false providing that 123px is not an integer. The only times when it would return true is when...
Are you sure the function is returning true the second time? It looks like you initialize valid as true outside of the function which means it only happens the first time the script is loaded. Try...
You might do better using the excel application object. Google "createobject("Excel.Application")." However you might get more responses by posting in a correct forum. Your code is vbscript. This is...
type is the id of the field you are using. when you copy and paste to another file, you probably don't have a field with the id type. Also, you should use document.getElementById()