Hi there,
I'm trying to submit an Update form and an email form on one click. I'm using
<script type="text/javascript">
function submitallforms() {
setTimeout('document.form1.submit()',100);
setTimeout('document.form2.submit()',200);
}
</script>
and
<input type="image" src="images/..."onClick="submitallforms();">
And this is working great in all browsers except Safari, which will only submit the form that is listed first.
Thanks
Dan