internet-explorer-9 Questions
14
I am trying to center in height a div, however it does not work when I resize the browser screen.
How to edit this to achieve the adjustable margin-top on resize?
Thank you
<script>
var h...
Billman asked 12/3, 2015 at 10:19
3
Solved
In order to align text vertically in SVG one has to use the dominant-baseline attribute.
This has already been discussed on SO (Aligning text in SVG) and is part of the specification.
My problem i...
Stephniestepladder asked 1/4, 2011 at 7:37
5
Solved
How to insert text into a tinyMce edtitor at the current position.
It works perfect in Chrome, FF, Safari, but in IE it always starts at the top of the textarea.
I currently do the following:
tiny...
Rhinelandpalatinate asked 12/12, 2012 at 21:38
4
Solved
I'm trying to grab the value of the style attribute before IE9-10 strips invalid values out. So far I've tried every variation of the following -
$0.attributes.style
$0.style
$0.getAttribute('styl...
Lulu asked 1/3, 2015 at 16:40
1
Solved
I often use the following code to clear the content of an element :
div.innerHTML = "";
But I found a stange behaviour on Internet Explorer. It seems that all children of the div get their own c...
Struma asked 26/2, 2015 at 11:42
8
Solved
I have just installed IE9 beta and on a specific site I created (HTML5) IE9 jumps to compatibility mode unless I manually tell it not to. I have tried removing several parts of the website but no c...
Olatha asked 16/9, 2010 at 11:52
5
Solved
I know it's possible to detect up and down e.g.
function handle(delta) {
if (delta < 0) {
alert('down');
} else {
alert('up');
}
}
function wheel(event){
var delta = 0;
if (!event) even...
Nineteen asked 30/5, 2012 at 18:17
3
Solved
In IE9 my browser has set:
F10 -> tools -> compatibility views setting -> added 192.168.10.227
therefore when I try to serve file, the browser mode is 9 compat view, the document mode is IE7 stan...
Rotten asked 19/6, 2013 at 6:25
5
Solved
Has something was changed in the way IE9 treats the title attribute in an anchor tag?
I try to use a regular anchor, such as -
<a href="http://www.somelink.com" title="Some title here">This...
Prochoras asked 25/7, 2011 at 22:7
5
Solved
I'm trying use make a div's background transparent using a mixture of CSS3 rgba() and microsoft's filter property like this:
div {
width: 200px;
height: 200px;
/* blue, 50% alpha */
background...
Ulema asked 28/6, 2011 at 12:1
5
Solved
I'm trying to get IE9 to load my page with IE9 standards...
I noticed having <!DOCTYPE HTML> puts the damn thing into quirks mode... Which pretty much breaks everything on page...
How do I ...
Merlynmermaid asked 30/6, 2011 at 3:45
13
Solved
This is driving me crazy.
Just testing a site on IE9 and discovered that the 'live' version is rendering a web font I am using smaller than on the dev version.
Here is a selection of screen grabs...
Nightdress asked 21/2, 2011 at 11:26
1
I have a blob and want to download it. It works for Chrome, Firefox, IE10 and higher. The problem is IE9.
var isIE = /*@cc_on!@*/false || !!document.documentMode;
var blob = new Blob([data], {t...
Debut asked 28/1, 2015 at 15:28
12
Solved
I recently upgraded to IE9-beta. Now, In my .Net (3.5) WinForm application I want to use WebBrowser control.
So my question is, whether the WebBrowser control will exhibit all properties and func...
Zachariah asked 6/1, 2011 at 6:8
6
Solved
Precondition:
I have an aspx-page with iframe inside. This iframe points to the url handled by MVC on the same site (it's hybrid site, both standard ASP.NET and ASP.NET MVC). The resulting page re...
Belittle asked 5/12, 2011 at 17:23
4
Solved
Is there a way to detect if the browser has subpixel precision for elements ?
IE9, unlike any of the other major browsers, has subpixel precision for its elements (an elements width can be 50.25px...
Stylographic asked 26/9, 2012 at 15:3
5
Solved
I came across this error only on IE9:
SCRIPT575: Could not complete the operation due to error c00c023f.
The error happened on this line: if ((a.responseXML) && (a.readyState==4)) {
...
Schubert asked 2/9, 2011 at 18:23
5
Solved
I have multiple checkboxes and a file upload input. I would like to re-enable a button if one or more checkbox's are checked AND if the input value is not null.
Here is a link to bootply
Here my ...
Holder asked 18/7, 2014 at 14:59
2
I have a site that uses a base tag to set an absolute path for relative URLs. It works fine in all the browsers I tested it in, except IE (big surprise). Based on the request that IE is making for ...
Atheist asked 30/6, 2011 at 22:15
3
I've got a webpage where I hide the content of the page until the onload JavaScript event is fired and then I unhide the content. It works quite well under Chrome, IE11 and IE10. But when I use IE9...
Glendon asked 12/12, 2014 at 7:47
5
Solved
I have found a bug in IE9 but googling for it hasn't helped finding any solution yet.
The following works fine in FF 3 + 4, Chrome, Opera and even IE8, but not in IE9.
The HTML:
<div class="o...
Fant asked 12/6, 2011 at 15:54
7
Solved
I'm using the HTML5 doctype with X-UA-Compatible meta tag near the top:
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en-us" class="ie6"> <![endif]-->
<!--[if IE 7]> ...
Ryurik asked 7/2, 2012 at 19:18
2
Solved
I have .NET Framework 2.0 project and AxWebBrowser control runing on Windows 7 with IE9 web browser.
When I put this code to my IE9 web browser:
<!DOCTYPE html>
<html>
<head>
...
Jagannath asked 20/2, 2013 at 7:31
2
Solved
I have a PowerShell script that navigates to a (presumably) classic ASP page on our intranet to stop a Windows Service running on our server as part of the deployment process for that service (and ...
Prehensible asked 13/12, 2012 at 22:20
3
Solved
I'm experimenting with the audio tag.
The file below does work in Google Chrome, but not in IE9. I'm always getting "audio tag not supported". I also tried wav, flac, wma --> same result.
I susp...
Nomism asked 9/9, 2011 at 7:59
© 2022 - 2024 — McMap. All rights reserved.