I'm using jQuery, and I'm seeing this error in the console:
jquery.min.js:2
Uncaught TypeError: Cannot convert undefined or null to object
at Function.values (<anonymous>)
at HTMLDocument.<anonymous> (<anonymous>:85:10)
at l (jquery.min.js:2:29375)
at c (jquery.min.js:2:29677)
jQuery comes directly from Google:
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
I'm guessing that there's a script somewhere on my end that's referring to a jQuery function that's expecting an object, but instead getting a null or undefined. But I'm not seeing any way to narrow down where it is on my end, and there are thousands of lines to sift through!
Looking at this line:
HTMLDocument.<anonymous> (<anonymous>:85:10)
I looked at the source code of the page to see if there was anything at line 85. It's actually a blank line, though, and there's no JavaScript or jQuery anywhere near it :-/
Any thoughts or suggestions on how to narrow it down?