Has never run into this issue? I\'m getting this error in the latest release of jQuery. I tried with version 1.6.2 and there is no issue.
TypeError: \'[object HT
This usually happens if any of your input tag's name is submit. For example,
input
submit
On the above code, document.getElementById("frm").submit represents the input element. When you apply () to submit It shows this error.
document.getElementById("frm").submit
()