internet-explorer-10

Angular JS “SCRIPT5007: Object expected” error in IE9 and IE10 upon loading the angular library

喜你入骨 提交于 2019-12-05 03:22:08
I am developing an AngularJS application that should run on Firefox and IE 9 and IE 10. I use the latest version of angularjs library (now it is 1.3.15). The serverside is written in Java in JavaEE platform and server runs on GlassFish, and our computers run windows 7. Everything works fine when I am running the server locally on my computer and access my application using the http://localhost:8080 url. But in IE9 and IE10, when I try to load the application from my server by using my ip address (something like http://191.10.10.200:8080 ) then angularJS library fails to load. It gives an error

array.map function not supported in IE8 standards?

[亡魂溺海] 提交于 2019-12-05 02:35:21
I don't have IE8 so I am testing IE8 from within IE10. When I switch to "IE8 standards" for document mode, the javascript map function of an array object gives a javascript error: Object doesn't support property or method 'map' but when I switch to "Standards" for document mode, there's no error. Which mode should I test under? If IE8 doesn't support the map function, is there a way to emulate it? It's not supported, but MDN provides a shim very close to the specification: // Production steps of ECMA-262, Edition 5, 15.4.4.19 // Reference: http://es5.github.com/#x15.4.4.19 if (!Array.prototype

Flexbox in IE10

纵然是瞬间 提交于 2019-12-05 00:32:28
I'm trying to get flex box working in IE10 but it's not working. Safari, Chrome and Firefox are working fine, but IE10 doesn't wanna work. Anyone knows the answer? codepen: http://codepen.io/anon/pen/vcEGH/ display: -moz-box; /* OLD - Firefox 19- (doesn't work very well) */ display: -ms-flexbox; /* TWEENER - IE 10 */ display: -webkit-flex; /* NEW - Chrome */ display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ -webkit-box-direction: normal; -moz-box-direction: normal; -ms-flex-direction: row; -webkit-flex-direction: row; flex-direction: row; -webkit-box-lines: multiple; -moz-box-lines:

How to inspect an element in IE10 (For Free)

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 00:17:56
问题 With chrome, I can right click on any element of the page, and choose "Inspect Element" How do I get this "kind of working" with IE10 for free ? 回答1: IE Developer Tools provides a "click to select" tool - for free. See Getting Started with the F12 Developer Tools (IE9/10) and look for "Select element by click": The Find menu has only one item, Select element by click. You can enable this feature from the menu item, by clicking the Select clement by click button Picture of Select Element by

Internet Explorer 10 and popstate not binding

故事扮演 提交于 2019-12-04 23:47:43
问题 I was wondering what could cause window.addEventListner('popstate', foo, false) window.attachEvent('onpopstate', foo) and window.onpopstate=foo to not trigger the function foo. We have code similar to this and in production it does not fire but in development it does. Is it possible to disable the popstate event via JS or cause some sort of collision or race condition for this to occur? EDIT (Gustin): + Sample Code PopStateEvent.js (complete listing, using jQuery 1.9.1): $(window).bind(

Disable pinch to zoom in IE10

强颜欢笑 提交于 2019-12-04 23:06:48
In IE10 touch mode I wish to make only a certain part of the page zoomable. The rest should not be. I found this: http://msdn.microsoft.com/en-US/library/ie/hh772044.aspx and tried to set -ms-touch-action: none to my body and html tags. However I can still zoom. Did I miss something? cmplieger Found the solution: -ms-content-zooming: none | zoom For me this CSS code work html { -ms-content-zooming: none; -ms-touch-action: pan-x pan-y; } I am using this code for disabling pinch and double tap zoom on windows tablet, I.E 10 Try to add this in your Head area: <meta name="viewport" content="width

some png images not load in IE10

允我心安 提交于 2019-12-04 22:04:33
I am working with a webpage that compatible to IE10. In IE10 some png images are loaded perfectly. but some images are not load(looks like a broken image). But every thing work in FF19. why this happening? any solution for this? <BODY> <img src = "aaa/Test1.png" /> <img src = "aaa/Test2.png" /> <img src = "aaa/Test3.png" /> <img src = "aaa/Test4.png" /> </BODY> UPDATE : The problem occurs only when i open the html file locally. If i open with domain images are loaded. Am so confused. Please some one tell me why this happening? So I was having this error as well and my fix was very obnoxious.

MSIE 10, web font and font-feature-settings causes invisible text

血红的双手。 提交于 2019-12-04 20:17:31
问题 I think this is really a bug in Microsoft Internet Explorer 10 but I could not find any explanation of the issue anywhere. A live demo of problem can be found at http://jsfiddle.net/37Bu5/ and here's the code: <html><head> <style> @import url("https://fonts.googleapis.com/css?family=Open+Sans:400"); .withkerning { font-family: "Open Sans"; font-feature-settings: "kern" 1; } </style> </head><body> <p>Here`s some example text 1.</p> <p class="withkerning">Here`s some example text 2.</p> </body>

Why does IE10 require the presence of a p:hover {} rule for transitions to work on a pseudo element?

青春壹個敷衍的年華 提交于 2019-12-04 18:23:28
问题 HTML: <p>Hover</p> CSS: p::after { content: " here"; transition: all 1s; } p:hover::after { font-size: 200%; color: red; } Live demo: http://jsfiddle.net/SPHzj/13/ (works in Firefox and Chrome) As you can see, I've set up CSS transitions on the ::after pseudo-element of the paragraph. Then, when the paragraph is hovered, two new styles apply for the pseudo-element which are transitioned. This works in Firefox and Chrome, but not in IE10. My reasoning was that IE doesn't understand the p:hover

Running ie10, ie11 at same time for testing?

喜夏-厌秋 提交于 2019-12-04 18:10:55
问题 I recently installed ie11 on my Windows7 machine and do browser testing for all versions of ie on it in the document. I also do tests on Browserstack. I have client now that INSISTS I test on ie10 directly. As you know, Windows won't let you run multiple version if ie, un-install ie directly, or reinstall an older version when a newer version is already installed. I don't want to have to uninstall/reinstall ie11, reinstall/install ie10. Is there a work around where I can run both version