Hi:
This one is a strange os/browser question. Only on Mac (I'm testing with OSX), and more frequently with Mozilla rather than IE, I get the weirdest behavior. After several forms have been submitted from different pages, all of a sudden the form will not submit!
Code sample:
<code>
function SetTaskAndPost(pTask)
{
if (intPosted == 0)
{
intPosted = 1;
document.forms[0].Task.value = pTask;
document.forms[0].submit();
return true;
}
}
</code>
This code is in an include file used by all pages in the site. I put a few alerts in, including just before and after the submit(). I get the alerts, but the submit action does not take place.
This is a commercial product and is currently live with this bug, so speedy replies are much appreciated!!!
Dan Walter
Dan Walter
Daniel.Walter@uvm.edu
This one is a strange os/browser question. Only on Mac (I'm testing with OSX), and more frequently with Mozilla rather than IE, I get the weirdest behavior. After several forms have been submitted from different pages, all of a sudden the form will not submit!
Code sample:
<code>
function SetTaskAndPost(pTask)
{
if (intPosted == 0)
{
intPosted = 1;
document.forms[0].Task.value = pTask;
document.forms[0].submit();
return true;
}
}
</code>
This code is in an include file used by all pages in the site. I put a few alerts in, including just before and after the submit(). I get the alerts, but the submit action does not take place.
This is a commercial product and is currently live with this bug, so speedy replies are much appreciated!!!
Dan Walter
Dan Walter
Daniel.Walter@uvm.edu