9
votes
7answers
427 views
Can !important rules be used in IE’s CSS expressions?
Firstly, I know that CSS expressions are defunct and wrong in so many ways, and also to avoid using !important where possible. This is for a special case stylesheet.
In Short
My question is... Is …
3
votes
2answers
63 views
jQuery click function not working in IE
Hi all,
I have an issue with a jQuery script I wrote that is driving me a bit nuts. As usual it works perfectly in Firefox but falls over in all IE versions.
I have the following HTML. It is …
3
votes
4answers
68 views
How to open IE with post info in CSharp?
Hi, i am developing a small program which as a windows form. On this form, i want to put a link, and when user click the link, a seperate IE browser will be open with post data.
Original, i used …
3
votes
2answers
50 views
Is there a good analogy to explain why website reliance on non-standard IE tags will go down in future years?
I'm trying to explain to a non technical person, why certain websites (generally ones whose user base exist solely in countries where Microsoft owns more than 99% of the market share) fail to load in …
3
votes
4answers
226 views
How to make SVG work with IE?
Hi Guys,
Does anybody know of a comprehensive library to make SVG work with IE (7 and 8 in particular)?
I wanted something Javascript which could be included in my web page and which would silently …
3
votes
1answer
342 views
IE PNG fix problem
I have applied ie PNG from here: http://www.twinhelix.com/css/iepngfix/
So I can use transparent PNG background images in my CSS. It works on divs but the problem is when I give a transparent …
2
votes
3answers
104 views
C# Web Service - Works in IE but not Safari
I have a simple webservice, which I want to access via a http post.
The webservice code is show below:
[WebMethod]
public int Insert(string userDate, string DeviceID)
{
bool output;
DateTime …
2
votes
2answers
49 views
Making IE not to hang with unsupported Javascript?
Hi,
I have a problem with IE. All other browsers work fine, but in IE the following example will make Javascript to stop entirely:
elem = document.getElementById('asd');
elem.style.background = …
2
votes
1answer
44 views
Cross browser way of setting IFrame to “about:blank”?
Does anybody know a proper, cross-browser way to "empty" an IFrame?
Is "about:blank" recognized without error across all browsers?
Is it valid to give an IFrame an empty src?
2
votes
3answers
93 views
Setting name of DOM-created element fails in IE — workaround?
I got bit hard by this today:
function mk_input( name, val ) {
var inp = document.createElement( 'input' );
inp.name = name;
inp.value = val;
inp.type = 'hidden';
return inp;
}
…
2
votes
4answers
480 views
jQuery change event on <select> not firing in IE
I've got a page with a variable number of <select> elements (which explains why I'm using event delegation here). When the user changes the selected option, I want to hide/show different content …
2
votes
2answers
62 views
Threading for iframe elements in IE
Of the following, which are not run in the same thread as the current page in IE8?
An iframe with the same domain as the current page.
An iframe with a sub-domain of the current page's domain.
An …
2
votes
1answer
64 views
Make IE respect your whitespace with dynmically changed content
If I have the following line in html:
<span></span> wtf
and then I run the jQuery statement:
$("span").html("test");
It ends up looking like "testwtf" instead of "test wtf". Is there …
2
votes
2answers
178 views
IE HTML radio change event
I have a project that requires some values to get updated with JavaScript from an HTML radio change event.
For some reason in IE, it seems that the onchange event isn't called until the radio has …
2
votes
3answers
104 views
How Can I Prevent Memory Leaks in IE Mobile?
Hi All,
I've written an application for use offline (with Google Gears) on devices using IE Mobile. The devices are experiencing memory leaks at such a rate that the device becomes unusable over …
