n'abend,
document.getElementById("Form").submit() - ungetestet, dürfte nach meinem Verständnis aber nicht funktionieren.
Und welches Verständnis führt zu deiner Annahme?
- Javascript? - ist immer vorhanden (Intranet)
- setTimeout - kenn ich
Dann weißt du ja bereits, wie du etwas zeitgesteuert ausführen kannst?
window.onload = function()
{
function submitMyForm()
{
var f = document.getElementById( "MyForm" );
if( f && f.submit )
f.submit();
else
alert( "FormElement could not be submitted" );
}
window.setTimeout( submitMyForm, 5000 );
};
<form id="MyForm" action="foo.bar" method="post">
<!-- your form elements go here -->
</form>
weiterhin schönen abend...
--
#selfhtml hat ein Forum?
sh:( fo:# ch:# rl:| br:> n4:& ie:{ mo:} va:) de:] zu:} fl:( ss:? ls:[ js:|
#selfhtml hat ein Forum?
sh:( fo:# ch:# rl:| br:> n4:& ie:{ mo:} va:) de:] zu:} fl:( ss:? ls:[ js:|