Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When you get the message "Object doesn't support this property or method", how do you find out what "Object" is?

When you get the IE error message "Object doesn't support this property or method", how do you figure out what "Object" is? Is it always the same thing? If not, is there a way to use the diagnostic tools or the console to figure out what it is?

like image 923
David Rhoden Avatar asked May 12 '11 19:05

David Rhoden


1 Answers

To get at IE's debugging information, you have to enable script debugging:

  1. In Internet Explorer, choose Internet Options from the Tools menu.
  2. In the Internet Options dialog box, click the Advanced tab.
  3. On the Advanced tab, under Browsing, clear Disable Script Debugging.
  4. Click OK.

http://msdn.microsoft.com/en-us/library/ms241741%28v=vs.80%29.aspx

If you have IE 8 or above, you can use their developer tools to debug:

http://msdn.microsoft.com/en-us/library/dd565625%28v=vs.85%29.aspx

like image 69
jimbo Avatar answered Nov 16 '22 00:11

jimbo