ie-developer-tools

How to pin/unpin Microsoft Edge developer tools in Windows 10

≡放荡痞女 提交于 2019-11-29 11:32:56
问题 I have upgraded to Windows 10; had a great experience on installation process. But very strange thing is I am not finding a way to pin (ctrl+9 for IE) the Developer Tools to an existing window with the MS Edge browser app. Is it missing? 回答1: Correct, pinning/unpinning the F12 developers is not available in current builds of Microsoft Edge (10240). This is a known issue and we are planning to bring it back in a future update. 回答2: In my laptop , the Microsoft Edge has it pinned. And the icon

How to debug or see VML ouput in IE? (e.g. from Raphael)

≡放荡痞女 提交于 2019-11-28 13:46:44
I'm working with Raphael.js to make cross-browser interactive vector graphics, trying to add a new feature with separate code to make the feature work in 'SVG mode' and 'VML mode'. My problem is, I can't see any way to inspect, debug, change or even see the defining properties of the actual IE VML output that Raphael creates. In SVG, it's easy - you just dig into the DOM with Firebug or Inspect Element and the SVG is right there with the right markup. In IE7 and IE8 in VML however, after hitting 'Refresh' in IE browser tools, there are lots of <shape/> entities - but they all claim to have

How do I dump JavaScript vars in IE8?

六月ゝ 毕业季﹏ 提交于 2019-11-27 10:46:46
I have an object I need to examine in IE8. I tried the developer tools and console.log , their Firebug equivalent. However, when I output the object to the log: console.log("Element: ", element); console.log(element); I only get the string LOG: Element: [object Object] instead of a clickable, examinable dump. Is it possible to dump an object to the Log and examine its members, like in Firebug? I can't use a homemade dump() function because the element I want to examine is so huge the browser will crash on me. Xavi Here's one technique that I've found helpful: Open the Developer Tool Bar (hit

How to debug or see VML ouput in IE? (e.g. from Raphael)

*爱你&永不变心* 提交于 2019-11-27 07:55:29
问题 I'm working with Raphael.js to make cross-browser interactive vector graphics, trying to add a new feature with separate code to make the feature work in 'SVG mode' and 'VML mode'. My problem is, I can't see any way to inspect, debug, change or even see the defining properties of the actual IE VML output that Raphael creates. In SVG, it's easy - you just dig into the DOM with Firebug or Inspect Element and the SVG is right there with the right markup. In IE7 and IE8 in VML however, after

Find attached / bound events of an element using Chrome Development Tools / Firebug / IE Developer Toolbar

十年热恋 提交于 2019-11-27 06:48:35
When inspecting a page's DOM, I would like to know the attached event(s) of an element quickly For example, if a button has this HTML DOM <button id="button1">Click Me</button> And somewhere (not in a place that I know in advance) it has an event attached, e.g. $("#button1").click(function(){...}); I know it can be done programatically ( Can I find events bound on an element with jQuery? ) but is there a way using just one of the developer tools for Chrome / Firefox / IE to see a list of events? Update : I found out that in the newer Chrome versions I have a tab called EventListeners but it

object has no hasOwnProperty method (i.e. it's undefined) - IE8

我与影子孤独终老i 提交于 2019-11-27 04:36:25
This seems quite bizarre. Here's my experiment in the IE8 console: typeof obj1 // "object" obj1.hasOwnProperty // {...} typeof obj2 // "object" obj2.hasOwnProperty // undefined Any ideas as to what could cause this? This example is from IE8, but the same return is from IE6+ and most other IE browsers. IE before #9 does not define it for host objects var o=window;// or document or document elements o.hasOwnProperty /* returned value: (undefined) undefined */ 来源: https://stackoverflow.com/questions/8157700/object-has-no-hasownproperty-method-i-e-its-undefined-ie8

How to set IE11 Document mode to edge as default?

∥☆過路亽.° 提交于 2019-11-27 00:36:06
I have Internet Explorer installed on my computer but needed to test compatibility mode of IE 7. After changing the document mode to IE 7, it set it as default and now I can't change it. The default is stuck on IE 7? How do I set Document mode default? Ken Gray You can achieve this using a meta tag as follows: <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> The rendering mode in Internet Explorer 11 can appear stuck if the site is added to your local Compatibility View list. When this happens, the rendering mode inside the developer tools and out will default to the specified

Finding an elements XPath using IE Developer tool

本小妞迷上赌 提交于 2019-11-26 22:58:39
Is there a way to find an element's XPath using IE Developer Tool? If your goal is to find CSS selectors you can use MRI (once MRI is open, click any element to see various selectors for the element): http://westciv.com/mri/ For Xpath: http://functionaltestautomation.blogspot.com/2008/12/xpath-in-internet-explorer.html testerab This post suggests that you should be able to get the IE Developer Toolbar to show you the XPath for an element you click on if you turn on the "select element by click" option. http://blog.balfes.net/?p=62 Alternatively this post suggests either bookmarklets, or IE

Why isn't my IE8 Developer Tools working?

折月煮酒 提交于 2019-11-26 19:29:46
问题 It used to work and now when I press F12 nothing happens...the window does NOT appear. I've uninstalled any other toolbars I've installed and tried resetting by security settings in IE...nothing. I'm using Windows 7 beta 回答1: Maybe someone disabled them? Here's how you do that. Basically: Check the following registry key: HKCU\Software\Microsoft\Internet Explorer\IEDevTools In the worst case you can remove the whole key. This wil revert the settings back to default. 回答2: In my case, the

IE crossing out pseudo element CSS?

南楼画角 提交于 2019-11-26 19:16:49
问题 I've been trying to get a few pseudo elements to work on IE, but it just doesn't let me. It crosses out the CSS and acts like it's not there, which kinda aggrevates me. Would anyone know what I'm doing wrong? .newbutton { border-radius: 50%; width: 74px; height: 74px; position: relative; background-color: black; margin: 60px 0px 25px 17px; overflow: visible; } .newbutton:before { content: "f"; width: 80px; height: 80px; position: absolute; border-radius: 50%; z-index: -1; top: 37px; left: