IE BHO Developer Toolbar and Developer Tools A viewing function that does not allow me to add to debug mode (using IE 8)

I use IE 8, and the "IE Developer Toolbar BHO" does not work correctly, in particular, it will not allow me to add anything to the "Watch" function in debug mode. Where he says β€œClick to add ...” in italics, it is inactive. This was after I tried using the IE 8 built-in debugger, Developer Tools, by the way. Thinking this was a separate incident, I tried to debug several websites, and I still can’t add anything to Watch. How can i solve this?

Thanks.

+4
source share
2 answers

It doesn't seem to work for me either. How did this go unnoticed? Perhaps no one ever tried to use it :)

The workaround is to enter the variable name / expression that interests you in the text box at the bottom of the Console tab and press Enter. Less than I know, but you are working with IE8 :)

+2
source

It turns out I thought I had the same problem, and I even read this page from MSDN (URL below) and skipped the relevant information. To add a variable to the view pane, you must first pause the script at runtime using a breakpoint. After reaching the breakpoint, the context menu will include the Add to Watch command, which was mentioned by others when you right-click on the selected variable.

Link: http://msdn.microsoft.com/en-us/library/dd565625 (v = vs .85) .aspx

0
source

All Articles