How to see errors in IE 7

I use javascript and ajax the most in my project. All functions work well in firefox. But some of them don't work in 6 and 7 browsers. Basically deleting doesn't work on any page of my project. I don't know how to resolve these errors. And I don't know how to see errors in browsers. So Plz help me solve this problem. Thank you in advance

+2


source to share


3 answers


Download and install the Internet Explorer Developer Toolbar and check your pages. Since you said you are using AJAX, I think the error might be javascript related.

In IE, JavaScript errors are displayed on the left side of the status bar (bottom).

You can also make IE notification of the error message by going to

Tools-> Internet Options -> Advanced [Tab]



and select "Display notification on every script error".

Please write more information about your problem.

  • What happens when you call the delete function?
  • What should he do?
+1


source


Tools -> Internet Options -> Advanced -> Enable Script Debugging.



0


source


create statements try-catch

in your code and report or print error messages received in the sentence catch

:

try {
    somethingThatDoesntWork();
} catch(e) {
    alert(e.message);
}

      

Using this with other tips for starting the debugger correctly should help quite a lot (:

0


source







All Articles