Sometimes when i debuggind js code debugger jump to jquery source file and of course i cannt understand anything in this obfuscated code. How to find any humanreadeble message about exception?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use non-minified JQuery code during development. The cause of the error is often not laid at jQuery, but at your implementation.
When you’ve added a new feature, which throws an error, read the documentation to find how to apply the function in the right way.