Hi,

> 3.use document.getElementsByTagName('form')[0].submit();

that's not a bug (you should close it or post a comment).
One cannot "submit" node element: it is not a form element (e.g.)
what about?
document.forms.item(0).submit();

or better if you give it id:

document.forms.item("formId").submit();

regards,
Peter

On Jan 17, 5:01 pm, CbaZ <cba...@gmail.com> wrote:
> Fixed is today.
>
> I think it was an error in chrome...
> The submit() pointed towards an input field and never to the
> javascript function that actually submits the form. therefore the
> strange errors "Property, not a function"
>
> workaround would be to use submit.click();
> bug urlhttp://code.google.com/p/chromium/issues/detail?id=32490
>
> Hope it's a big and not me being stupid :)
-- 
You received this message because you are subscribed to the Google Groups 
"Chromium-extensions" group.
To post to this group, send email to chromium-extensi...@googlegroups.com.
To unsubscribe from this group, send email to 
chromium-extensions+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/chromium-extensions?hl=en.


Reply via email to