Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE 8 Developer Tools not working In Windows?

I am using Internet Explorer 8, not by choice. I need to debug a script in it. However, no matter how many times I click the Developer Tools Icon, under Tools or click F12 it will not show up. Sometimes, I can see that it is minimized in the taskbar but when I actually go to click it. It will not show up...

Does anyone know how to get it to work or what the problem is? I tried updating restarting killing all the processes with no luck.

like image 303
Andrew Avatar asked Aug 05 '09 15:08

Andrew


People also ask

Is IE 8 still supported?

On April 9, 2019, Microsoft released the final IE8 update for Windows Embedded POSReady 2009, the last supported version of Windows based on Windows XP, marking the end of IE8 support on all platforms.

How do I open IE in developer mode?

To access IE Developer Tools, you launch Internet Explorer and press F12 on your keyboard or select “F12 Developer Tools” on the “Tools” menu. This opens the developer tools inside the browser tab.

What are the properties of IE developer tools?

It was introduced as a toolbar for Internet Explorer 6 and 7. Internet Explorer 8 and later have developer tools built in. It allows validating of CSS and HTML, previewing page layout at various resolutions, and also offers a ruler (measuring in pixels) to aid in positioning the elements.


2 Answers

I did the following:

  1. Right click on developer tools in the task bar,
  2. Select Maximize,
  3. Pin the window to Internet Explorer (Ctrl + P)
  4. Then it should appear in IE.
  5. Select the restore button to unpin.

I really hope someone got fired for that.

like image 199
Ian Avatar answered Sep 28 '22 16:09

Ian


The window/toolbar may be off-screen (often way off to the left) or have a zero size. If @EricLaw's suggestion doesn't work I'd recommend uninstalling and then reinstalling (log off or reboot between the uninstall and reinstall to allow any pending deletes to finalize).

I've encountered similar issues with various applications over the years, especially if you've shut down the application while it is minimized (occasionally, even if maximized). Often the developers haven't taken these conditions into account before saving the window/toolbar size and/or position, resulting in a set of invalid coordinates for the next launch. The root cause goes way back to Windows 3.x and the GetWindowPlacement API.

like image 41
devstuff Avatar answered Sep 28 '22 17:09

devstuff