internet-explorer-9

SVG width in IE9

人走茶凉 提交于 2019-12-07 22:09:05
问题 I have a SVG. In Firefox and Chrome the width:100% and height:100% is working well. But in Internet Explorer 9 is not. Somebody knows how to fix it? Thanks. UPDATE: My really problem is putting this SVG into a table (the width is awful in IE9). The <td> 's are dynamic, I can't set width for the container of the SVG. 回答1: It's because the html, body, and div elements are collapsing down to the intrinsic height of the SVG. To work around that, you can set the html, body, and div elements to 100

Force file download for IE9 on Azure Blob Storage

女生的网名这么多〃 提交于 2019-12-07 19:01:12
问题 I am trying to use Azure Blob Storage as a location for secure file downloads using Shared Access Signature. Everything is working very well, however the problem I am having is I am trying to allow the user to save files from the browser and I have all browsers except IE9 working. Reviewing this question, What content type to force download of text response? this works well when I can control all of the headers, however in Azure Blob Storage, I have set the Content-Type to application/octet

IE 9 CSS Float problem!

江枫思渺然 提交于 2019-12-07 18:02:02
问题 The following web page is not showing properly in IE 9. It seems to be only a problem in IE 9. http://froyo.tv/test/ the list-style-image are over the image! IE9 Firefox, Chrome, IE8, ... EDIT: I know how to fix it! But I want to know what is really going on with IE9 Fixed: http://froyo.tv/test/index_fix.php 回答1: I'm not sure why IE9 is behaving differently, but you can fix it to work consistently by: Removing margin-right: 30px on .image . Removing width: 500px on .detail (you may wish to

jquery-ui 1.9.1 ui-draggable not working with ie9 and ie10

核能气质少年 提交于 2019-12-07 17:47:19
问题 I am having trouble making .draggable work in IE 9 and 10. The main javascript packages used are: jquery-ui-1.9.1.min.js and jquery-1.8.2.min.js The code basically looks like this: creation.texts.resize = function(){ jQuery('.modification-text.active .creation-resize-handler').draggable({ start: function(event, ui){ ... some code ... }, drag: function(event, ui){ ... lots of code ... }, stop: function(event, ui){ ... some code ... creation.texts.resize(); } }); } It works perfectly fine with

How many concurrent connection does IE9 have while in IE7 mode

十年热恋 提交于 2019-12-07 17:03:55
问题 Does anyone know how many concurrent connections IE 9 allows while in other browser modes? Since I'm asking, how concurrent connections do all IE browsers and other the top browsers have? Actually having issues in Chrome, i think its a concurrency problem, someone suggested that it should happen in IE& as well, but i do not have IE7 installed. I did try it in IE9 set to IE7 browser mode, and it worked. SO was wondering if IE7 mode was using IE9's concurrent connection? 回答1: IE8 and IE9 have 6

Non ascii characters in link_to is causing the app to fail in internet explorer 9 in rails app

穿精又带淫゛_ 提交于 2019-12-07 14:49:50
问题 I have a recipe search form in my rails app. In a recipe's detail, I have a link to return to the results. The line I added is: link_to "Return to search", :back In Internet Explorer 9, because the :back link has a utf-8=✓ in the url, I get an encoding error. The description of the error is: ActionView::Template::Error (incompatible character encodings: ASCII-8BIT and UTF-8) Let there be known the encoding in my application.rb is set to utf-8. I'm using ruby 1.9.2. 回答1: On Ruby 1.9.x you

IE9 set innerHTML of textarea with html tags

落花浮王杯 提交于 2019-12-07 13:53:09
问题 I have this field In IE9 the following line gives me the error 'SCRIPT601: Unknown runtime error ' //option 1. document.getElementById('code').innerHTML = 'some text'; The error disappears and it seems to work (assiging empty value) when I change the line to: //option 2. document.getElementById('code').innerHTML = ''; The I tried this: //option 3. document.getElementById('code').innerHTML = escape('some text'); but then the HTML gets to be escaped and thats not what I want, I want this exact

IE9 importing inline SVG <image> elements broken

五迷三道 提交于 2019-12-07 12:43:26
问题 I am using this method to import an SVG doc into a page, and it works pretty well, but in IE9, none of the <image> tags work after the import (they show up as broken images, even though their xlink:href attribute is correct). Why does this happen, and is there any way around it? Here's a simple test page. It works fine in Chrome, FF, etc, but not in IE9. 回答1: The js implementation of importNode provided in this answer doesn't properly set namespaced attributes, it should use setAttributeNS to

Opening a new window create a new session

此生再无相见时 提交于 2019-12-07 10:23:18
问题 We are upgrading a web-based software from Windows XP with Internet Explorer 6 to Windows 7 with Internet Explorer 9. Furthermore, a webbrowser object is used inside a WPF application. We now have a strange behavior, when opening a window with a url (with an instruction like window.open(url)), the ASP session is "lost" and the new window works with a new from scratch session. I solved this issue by avoiding useless windows opening and instead, I modify the location of the current window. But

CSS rule “.drop.a” being applied to class “drag a”

时间秒杀一切 提交于 2019-12-07 07:44:19
问题 I have the following HTML markup: <div class="drag a"></div> <div class="drop a"></div> I also have the following CSS rule, which should only be applied to my 2nd div: .drop.a { background-color:red; } This is working fine, except in Internet Explorer 9 the CSS rule is being applied to both elements. Why is this? I thought this kind of CSS was universally compatible with all browsers? 回答1: I thought this kind of CSS was universally compatible with all browsers? Nope. IE up to and including