Reputation: 2121
In IE browser showing a JavaScript error at the status bar.
Error message is:
Done, but errors on the page(Object doesn't support this property of method)
file: file_name.jsp
line number: 200
but there are not any js code at line number 200
in file_name.jsp
.
How to find this bug?
Upvotes: 0
Views: 1367
Reputation: 2554
you will not find any js code in file_name.jsp two ways you can find your error is by
i suggest you do debugg in f12 and see if you find any error
Upvotes: 4
Reputation: 69663
You can press F12 in internet explorer to open the developer tools. You can use those to jump directly to the code line where an error occured.
Upvotes: 1