Click to See Complete Forum and Search --> : Same code doesnt work on Secure Server


computergenius
03-16-2004, 02:53 AM
Can anyone tell me how to get this code - which works on a standard server - to work on a secure server? It is simply checking that the user has checked a checkbox.

function checkCheckBox(formfield, msg )
{
if (formfield.checked == false )
{
alert( msg );
etc..

The function is in an external file - because there are quite a few similar functions. The function is reached - if I add an alert() on the first line, I can see it. However, (formfield.checked == false ) is evaluated incorrectly.

gil davis
03-16-2004, 06:03 AM
Is the external file also on the secure server?

computergenius
03-16-2004, 06:56 AM
Yes, same folder on the server, even.