First, I deleted all the other scripts on the page, after which I received only the following error (obviously, because I no longer tried to use $ ):
After trying about a dozen things (and their combinations) that I found on the Internet, I decided to use a non-minified version of jQuery so that I could more accurately determine the line that was causing my problem. After downloading this and looking at the console, I pointed to line 1513, which looked like this:
if ( parent && parent.frameElement ) {
Above this line was a comment in which the problem I encountered was noted:
// IE will throw "permission denied" error when accessing "document" variable, see jQuery
I googled jQuery #13936 and stumbled upon this page , which suggested replacing the following line:
if ( parent && parent.attachEvent && parent !== parent.top ) {
After making this change, I was glad that the problem was resolved and my form was working properly. I checked the other browsers again and can confirm that they still work as expected.
Marty source share