Are you submiting a web form using jQuery or JavaScript and getting an error message which says:
TypeError: f[s] is not a function
The reason behind this could be that you have a form with the submit button named “submit” which conflicts with a jQuery event name submit. Changing button name to something other than “submit” should resolve the issue.