Click to See Complete Forum and Search --> : submiting a forum using code


pelegk1
07-11-2004, 08:49 AM
i am trying to submit a form like this :
document.getElementById("btnSubmitQnt").submit();
but i t tells me : "object dosent support this object or method"?!?!
what to do?
thnaks in advance
peleg

Kor
07-12-2004, 01:40 AM
It looks like your object "btnSubmitQnt" is a button, not a form

You should have something like

<form id="myform_id" name="myform_name">

Now the code is either by id
document.getElementById('myform_id').submit();
or by name
document.forms['myform_name'].submit();

pelegk1
07-12-2004, 02:22 AM
my mistake your 100% correct