internet-explorer-10

IE requires double click with custom button

蓝咒 提交于 2019-12-03 06:21:19
I have a script that is dived as: HTML: <div id="wrapper"> <div id="container"> <div id="button">Click me!</div> <form> <input type="file" /> </form> </div> <div id="notice">File is uploaded!</div> </div> JavaScript(JQuery 2): $(document).ready(function () { $("input").on("change", function () { $("div#notice").fadeIn(); //$("form").submit(); //If you want it to submit on your site uncomment this }); }); CSS: div#wrapper { background-color: #ccc; position: absolute; width: 300px; height: 200px; } div#wrapper > form > input { color: rgba(0, 0, 0, 0); zoom: 1; filter: alpha(opacity=0); opacity:

Reporting services printing crashes IE

余生长醉 提交于 2019-12-03 06:19:13
We have been using SSRS 2008 R2 for over a year and printing has worked fine. As the client browsers on Windows 7 are upgraded to IE10 we have some browsers crash when the users click on the print icon. The faulting module is rsclientprint64.dll To try to resolve this issue I manually copied the dll and associated files to C:\Windows\Downloaded Program Files and registered the dll using regsvr32. I registered the rsclientprint64.dll instead of the rsclientprint.dll since that is the file that ssrs downloads in our case. I did try to register the 32 bit version too but still no success. I added

IE10 d3.v3.js error: Unable to get property 'prototype' of undefined or null reference

岁酱吖の 提交于 2019-12-03 04:55:25
My page is loading perfectly in IE9, Safari, Chrome & Firefox. But when it coems to IE10 , it throws error : Unable to get property 'prototype' of undefined or null reference in d3.v3.js at line : d3_window.CSSStyleDeclaration.prototype. try { d3_document.createElement("div").style.setProperty("opacity", 0, ""); } catch (error) { var d3_style_prototype = d3_window.CSSStyleDeclaration.prototype, d3_style_setProperty = d3_style_prototype.setProperty; d3_style_prototype.setProperty = function(name, value, priority) { d3_style_setProperty.call(this, name, value + "", priority); }; } I am not

SEC7118: XMLHttpRequest CORS - IE Console message

萝らか妹 提交于 2019-12-03 04:44:12
I am using CORS POST request with everything taken care as given @ http://www.html5rocks.com/en/tutorials/cors/ Server sets Response header to: 'Access-Control-Allow-Origin':'*' and I can see this header value in IE developer tool. But on IE10 browser I see console message as "SEC7118: XMLHttpRequest for http:// required Cross Origin Resource Sharing (CORS). When I check on Microsoft site it has below given explanation. http://msdn.microsoft.com/en-us/ie/dn423949(v=vs.94).aspx SEC7118 Description: "XMLHttpRequest for [URL] required Cross Origin Resource Sharing (CORS). " An XMLHttpRequest was

Alternatives to F12 Developer tools in Internet Explorer 10 Metro?

北战南征 提交于 2019-12-03 02:59:51
I'm testing our JavaScript-heavy web application on Windows 8. For what it seems, IE10 on desktop works just fine. However, the Metro UI version for IE10 seems to break our application. My question is this: is there a way to debug web applications on IE10 Metro? For what I know, F12 developer tools are not available. The rendering/ JS Engine in IE10 Desktop and IE10 should be identical. Does your app use any Add-ins (for things like cut and paste support?) As far as I am aware taking IE10 Desktop and switching off plugin support should be the same as running your app in "non desktop IE10" As

CSS filter grayscale image for IE 10

巧了我就是萌 提交于 2019-12-03 01:21:36
Is there a way to make grayscale image filter work on IE 10 without JavaScript or SVG? I've been using the following code successfully in all browsers except IE 10. img{ filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */ filter:gray; /* IE6-9 */ -webkit-filter:grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */ -moz-filter: grayscale(100%); -o

Dotted line in pdf file with IE 10

半城伤御伤魂 提交于 2019-12-02 22:07:54
问题 The graph is the same and correct on browser, Chorme, IE11, IE10, etc.... In IE 11, I press a button to create png file, the result is correct. In IE 10, I press a button to create png file, the result is incorrect, the dotted line of graph change to solid line. I have no idea about this problem, can anyone help me? IE 11: (source: 2.pik.vn) IE 10: (source: 2.pik.vn) This is the code i use to convert from svg to canvas: var svg = document.getElementById("graphP").innerHTML; var canvas =

Windows 8 prepare site for pinning

爷,独闯天下 提交于 2019-12-02 17:20:28
I would like to prepare my site for windows 8 pinning and have been reading some documentation on how to add the various images and could figure out that it could be done by using metadata and according to instructions and help on this site I could actually build the following meta tags but i couldn't figure out where I can call the browserdetect.xml file assuming I have the file located at mysitee.com/upload/win8/browserdetetct.xml and the images in the same folder <meta name="application-name" content="MySite"/> <meta name="msapplication-TileColor" content="#2d90c6"/> <meta name=

Calculating speed using JavaScript returns NaN

☆樱花仙子☆ 提交于 2019-12-02 16:40:26
问题 I am following the sample shown here How to detect internet speed in Javascript? where an image with known file size is downloaded from the web and the speed is determined. For some reason I am not getting a result. My implementation is slightly different in that I am calling the JavaScript using InvokeScript and getting the value via ScriptNotify. My result value, however, is NaN. What can I do to fix this? JavaScript var imageAddr = "http://www.tranquilmusic.ca/images/cats/Cat2.JPG"; var

How can I make background-size:cover work in IE10 without making attachment fixed?

青春壹個敷衍的年華 提交于 2019-12-02 12:12:44
My code: html { background-image:url('img.png'); background-repeat:no-repeat; background-position:center top; background-size:cover; } This works perfectly on Firefox and Chrome, but on IE the image doesn't get stretched at all. It will work if I set background-attachment to "fixed" but that isn't what I want. Every website I've looked at claims that these proprties are perfectly implement in IE, but they clearly aren't. Troubleshoot CSS Background Size Cover It's a bit hard to troubleshoot without seeing additional code or the website, but here are some things you can try. Try adding