I'm using CSS 3 features like "rounded corner" or "shadow box".
IMHO These are fantastic features for people like me with no graphics knowledge. But, i've noticed, IE 7-8 not support CSS 3.
So i'm asking you: is there a way to "enable" some features maybe with some javascript functions to include in my html file ?
Thank you!
...
I'm doing something stupid and trying to capture thumbnails, snapshots, images of a html webpages.
I'm doing something along the lines of:
http://stackoverflow.com/questions/443837/how-might-i-obtain-a-snapshot-or-thumbnail-of-a-web-page-using-php
DCOM + IE + PHP (imagegrabwindow; example from manual)
Everything works PERFECT until I...
We have a pretty big web page with a bunch of javascript. When loading it in Firefox/Chrome, the page gets loaded gradually. First the html that already is received is rendered and shown and then the javascript gets executed.
Internet Explorer 8 however waits until the request is completely received and its javascript executed before it...
<meta http-equiv="X-UA-Compatible" content="IE=8">
or
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8">
With this set my EPS files are not rendered in ABCpdf, but set to EmulateIE7 and they work fine.
I know EPS aren't a standard web format but they are embedded into a PDF using a bit of ABCpdf magic.
Because IE8 isn't ...
I am wanting to return the start and end range or the caret postion inside a div. The div will have the attribute contentEditable.
typically I would use document.selection.createRange(); but the createRange function is broken in IE8 is there a way to get around this?
...
Bug: when hiding an element with JavaScript in IE8, the margin of still-visible other elements on the page is ignored.
This bug has been introduced with IE8, since it works as expected in IE6+7 (and other browsers).
<html>
<head>
<style>
#a, #b, #c, #d {background: #ccf; padding: 4px; margin-bottom: 8px;}
</style>
</hea...
I have code that uses Microsoft's XDomainRequest object in IE8. The code looks like this:
var url = "http://<host>/api/acquire?<query string>";
var xdr = new XDomainRequest();
xdr.onload = function(){
$.("#identifier").text(xdr.responseText);
};
xdr.open("GET", url);
xdr.send();
When the scheme in "url" is "...
<html>
<head>
<script>
var i;
i = 0;
function loop() {
i = i + 1;
alert(String(i));
setTimeout("loop()",1000);
}
setTimeout("loop()",1000);
</script>
</head>
<body>
</body>
</html>
Please try the above code in IE8 it will not give alert message for every 1 sec if you hold right click.
But...
Hi
We are migrating at work to Internet Explorer 8 and we are confronted to the new "feature" the so called "Session Merging", all new windows from IE8 share the same Session Cookie.
That's creating some problems because we have a Web based system that must permit work in parallel in several windows, but each must have it's own Sessio...
I am using a website/program that we had developed in JavaScript, and it utilizes Google Gears to maintain an offline site. This software is distributed to our clients, and there are roughly 300 users currently. I will sometimes get a rogue issue (maybe 3 times in the last year) where Google Gears prompts with "A gears update has been do...
I've got a problem with IE 8 CSS.
* {
margin: 0;
padding: 0; }
img, fieldset { border:none; }
body {
font-family: Arial, Helvetica, sans-serif;
}
In the page:
<body style="background:#FFFFFF url(../public/img/s5_fa_bot_bg.png) no-repeat bottom center">
The png image is displaying correctly in Firefox and Saf...
I have an issue with menu dropdowns that use JQuery. Using IE8, take a look at my menu just below the header. Hover over 'Acrylic Awards', then 'Award Plaques', then 'Crystal Awards'.
http://www.blackacedesign.com/
Anyone know what causes this issue in IE8? And how I can fix it?
...
Hi all,
I have the following code, which works well in IE6 but not IE8. In IE8, both the usercontrols are squashed up, but it works well in IE6. I tried inserting into the second div, which makes it work well in IE8 but not IE6. Anyone knows how to make the pages look the same?
<div>
<ucFilter:FilterUserControl ID="ucFi...
Hi,
I thought what I was trying to do is quite simple, but apparently nothing related to IE is ever simple.
I'm using this with javascript and ajax - document.getElementById("calender").innerText=mypostrequest.responseText
it works fine in ff and IE7, but not IE8. I suspect it's because the text contains a table, since I have tested...
Hi guys,
I'm building a dummy widget for a iGoogle/Netvibes like portal. This is a "Google Maps" widget, as it only renders a map centered on a specific location.
The widget looks good in all browsers but IE8, in which the height I specify to the <div> that contains the map is not taken into account.
Here's the interesting part of the...
IE 8 crashes with the following javascript but the same code works fine in IE6, IE7, IE8(IE7mode), FF3, Chrome and Safari. Has anyone run into this? Any known workarounds?
Thanks in advance,
-dk
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="h...
I'm doing this:
http://blogs.msdn.com/b/ie/archive/2009/03/10/more-ie8-extensibility-improvements.aspx
But it's not working.
I have "iexplore.exe" set to 8888 (decimal mode) under MACHINE, but it's still coming up documentMode = 5.
I thought 8888 was suppose to force IE8 Standards Mode whether you have a doctype or not.
What is goin...
Hi,
I'm having an annoying problem trying to get an html page with a google map on it to print correctly, I have a google map with an <h2> above it all wrapped in a div and the div is set to 'page-break-before:always;' in the css so that the map and its heading always sits on a new page.
The problem is that in IE8 only i can always see...
I'm having a really strange issue, I have a flowplayer video, and next to that is an image that when clicked shows in a fancybox, in webkit, mozilla it works fine, but IE decides to put the video in front of the slide.
I thought this might be related to the z-index, but everything seems fine there. Fancybox gives the loading image a z-i...
I'm working on a site that will go on my company's intranet. I developed it locally on my computer, checking it in different browsers and on colleague's computers, and when it was done I handed it off to IT. They put identical copies on a staging server, and on the production server. This is a site built only with html, javascript, and c...