internet-explorer

Conditional comments alternative to load jQuery

元气小坏坏 提交于 2020-01-25 12:00:10
问题 Because jQuery 2+ doesn't support IE 8, I'll need to make use of a previous version: jQuery 1.9. Is there a way to include jQuery 1.9 when using IE <= 8 and jQuery 2+ when using IE > 8. I tried it with Conditional comments: <!--[if lt IE 9]><!--><script> .. googleapis jquery 1.9 .. </script><!--<![endif]--> <!--[if gte IE 9]><!--><script> .. googleapis jquery 2+ .. </script><!--<![endif]--> The problem is that It is not working and I found some information about it not being supported anymore

media query is not working on ie10

你说的曾经没有我的故事 提交于 2020-01-25 11:52:17
问题 i made a responsive site and i'm using media queries in my css. everything is looking good on chrome and FF but ie10 is ignoring all my queries. i have <meta name="viewport" content="width=device-width,user-scalable=no, initial-scale=1"> on the header because the site is set for tablets. i tried to delete the meta tag and it didn't solve the problem. i tried almost everything: @media only screen and (max-width: 800px), only screen and (max-device-width: 800px) @media only screen and (max

media query is not working on ie10

妖精的绣舞 提交于 2020-01-25 11:52:05
问题 i made a responsive site and i'm using media queries in my css. everything is looking good on chrome and FF but ie10 is ignoring all my queries. i have <meta name="viewport" content="width=device-width,user-scalable=no, initial-scale=1"> on the header because the site is set for tablets. i tried to delete the meta tag and it didn't solve the problem. i tried almost everything: @media only screen and (max-width: 800px), only screen and (max-device-width: 800px) @media only screen and (max

Trying to open a link in IE window from Chrome browser

落花浮王杯 提交于 2020-01-25 11:21:08
问题 I have seen this question been asked here Can I force a link to open in a specific browser? I found one solution which works eg. window.open("microsoft-edge:https://www.google.com"); This works for Edge but I am looking for similar solution to open in Internet Explorer. Tried ie , iexplore , internet-explorer Also i cant depend on users installing 'open in' extension in their browser. I could possibly go down the route of editing registry since webapp will be running in corporate systems ,

Java Desktop.browse occasionally returning “requested lookup key not found in any active activation context”

↘锁芯ラ 提交于 2020-01-25 09:45:13
问题 I am really struggling with this issue as it seems to occur randomly for me. When I call, Desktop.browse("some url"); Internet Explorer will not display. The exception message is as follows, The requested lookup key was not found in any active activation context. When it occurs it occurs consistently until I restart the machine, but it eventually occurs again. The workstations that seem to have this problem are running Windows XP with Internet Explorer 8 set as the default browser. EDIT: I

Inheritence in Javascript

拜拜、爱过 提交于 2020-01-25 09:01:29
问题 I get a strange bug when I implement inheritence in Javascript using prototypes. I am wondering if someone can explain this. In the following code, I am trying to derive a child class from a parent class: parent_class=function(byref) { if( !parent_class.prototype._vtbl ) { parent_class.prototype.parent_func= function(o) { return alert("parent_func"); } parent_class.prototype._vtbl = true; } } child=function(byref) { parent_class.call(this,byref); if( !child.prototype._vtbl ) { child.prototype

How can I make IE recognize HTML 5 tags?

情到浓时终转凉″ 提交于 2020-01-25 04:57:08
问题 What are some good solutions for making my HTML 5 pages compatible with IE (at least IE 7 & 8)? Is there an industry standard that I can use that will make IE recognize things like <article> and <nav> ? 回答1: Yeah, you can run the html5shiv if you want, which is what you seem to be referring to. It'll allow IE to parse the tags initially. But that will still leave you with the same problems if you want to use innerHTML (or framework code based on it). There's the innershiv, but it's not

Accessing named pipe servers from within IE EPM BHO

无人久伴 提交于 2020-01-25 04:29:06
问题 I am trying to make some changes to our legacy product to support IE EPM on the BHO. I have managed to get it to load and the various methods - SetSite, DocumentComplete etc. - get invoked. I seem to be hitting a snag when trying to connect to the named pipe server running inside a Windows Service. Previously, we had already made changes to allow IE BHO in protected mode to access the named pipe server - using LOW_INTEGRITY_SDDL_SACL ("S:(ML;;NW;;;LW)"). Within the code, we were using

SWT Browser navigator version

邮差的信 提交于 2020-01-25 00:34:09
问题 Even if my Windows has the latest version of IE, the SWT Browser still runs on version 5.0 (yes, FIVE). At least that's what a simple alert(navigator.appVersion) says so. System.setProperty("org.eclipse.swt.browser.IEVersion", "8000"); does not work -Dorg.eclipse.swt.browser.IEVersion 8000 does not work I don't necessarily need v10.0 to work, but at least a DECENT version SWT.MOZILLA and SWT.WEBKIT are out of the question. XULRunner gives headaches SWT v3.8.1 Edit: Actually, now that I think

Automatic, soft hyphenation in CSS

六月ゝ 毕业季﹏ 提交于 2020-01-25 00:04:47
问题 In December last year, CSS3 Hyphens support supposedly came to Chrome . Also, IE should be on board, in addition to other major browsers. Update: Upon receiving the answers below, I understand that I misinterpreted the footnote on caniuse.com. It says: 'Only supports the auto value on Mac for now' . I interpreted this as meaning 'On the Mac, only the auto value is supported for now' . But what is really meant is 'The Mac is the only platform where the auto value is supported for now' .