Page 1 of 1
Forum

Welcome to the Tweaking4All community forums!
When participating, please keep the Forum Rules in mind!

Topics for particular software or systems: Start your topic link with the name of the application or system.
For example “MacOS X – Your question“, or “MS Word – Your Tip or Trick“.

Please note that switching to another language when reading a post will not bring you to the same post, in Dutch, as there is no translation for that post!



JavaScript - Error:...
 
Share:
Notifications
Clear all

[Solved] JavaScript - Error: Property ‘SUBMIT’ of object # is not a function?

1 Posts
1 Users
0 Reactions
1,556 Views
 Hans
(@hans)
Famed Member Admin
Joined: 12 years ago
Posts: 2859
Topic starter  

I just got the "Property ‘SUBMIT’ of object # is not a function" error message ... great!

This is a possible indicator that the name and id of your submit button are actually "submit".
Calling this in javascript will make it that javascript will try to access the BUTTON and not the FORM, and will therefor FAIL;

javascript:document.getElementById('myformname').submit();

Rename your submit button (name and id) to resolve this.


   
ReplyQuote
Share: