Krishna Kumar
Krishna Kumar

Reputation: 2121

In IE browser showing a JavaScript error at the status bar

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

Answers (2)

Chandra Sekhar Walajapet
Chandra Sekhar Walajapet

Reputation: 2554

you will not find any js code in file_name.jsp two ways you can find your error is by

  • opening up f12 window set start debubbing to on and see where the error occurs
  • or you can right click your page on the browser and view source and goto line 200 and see if you can find any js code.

i suggest you do debugg in f12 and see if you find any error

Upvotes: 4

Philipp
Philipp

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

Related Questions