Showing posts with label IE. Show all posts
Showing posts with label IE. Show all posts

Tuesday, 14 May 2013

Detach a Process in Visual Studio and IE 10 javascript debug

Having an error after installing IE 10:
Attaching the Script debugger to process '[<ID>]' iexplore.exe' on machine '<computer name>' failed.  A debugger is already attached.

To detach this process:
  • Open the Processes windows (Debug, Windows, Processes)
  • Select the process (iexplore.exe with that ID), right click and select "Detach Process"

To fix the problem without detaching the process every time:
  • run the following in a command window: regsvr32.exe "%ProgramFiles(x86)%\Common Files\Microsoft Shared\VS7Debug\msdbg2.dll"
  • make sure run the cmd prompt as an administrator


Thursday, 21 March 2013

Web Application targets IE 9 and above...

Add this to the master page or the shard layout file, and IE will not go into the compatibility mode (IE 8)
  • <meta http-equiv="X-UA-Compatible" content="IE=9" />

Tuesday, 12 February 2013

jQuery UI Dailog, IE and DropDownList

There is a problem to select from a dropdownlist in a jQuery Dialog plug-in.  It happens only in IE (8 and 9, at least).  It works in FireFox.

  • The very first time (after opening the dialog) will work but it won't when I try to select another value
  • I can select the value using the keyboard
  • Tab to the dropdownlist and select with the mouse
  • I tired to add the z-index to the dropdownlist but it doesn't help
Solution:
  • The current solution is adding a mouseover event to set the focus to the dropdownlist.
onmouseover = "this.focus();return true;"


Monday, 30 July 2012

Changing Text Size in Browser

Suddenly the text on YouTube became very small in my FireFox borwser... press <Ctrl> and the "+" to change the size of the text.  It also works in Chrome and IE.