I am getting Object Expected error.
I am unable to find the reason this error happens.
Can you tell me the senarios when this error occurs?
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.
This is a typical JavaScript error message, not a JSP error message. JSP is a view technology providing a template for HTML/CSS/JS. When writing JS in a JSP page and having problems with it, it’s not caused by JSP, but just by yourself. You would have exactly the same problem when doing so in a “plain” HTML file.
The most common cause of this error message is a syntax error in the JavaScript code or a misspelling in the function name. Verify if your JS code is all right, i.e. there are no missing braces, parens nor semicolons and ensure that all calls to functions are spelled correctly.
Also see this site for more information.