internet-explorer-8

How to emulate min-width in IE8

冷暖自知 提交于 2019-12-08 19:14:26
问题 The IE8 documentation says it supports min-width, but it doesn't seem to work for me. The html I want to be a minimum width is in table cells. I saw another question here which suggested adding a 1-pixel height div to each cell, with a width setting, but that doesn't work - IE renders it as 18 pixels high, for some reason. Here is the html code: <html> <head> <script src="jquery.js" type="text/javascript"></script> <style type="text/css"> table.keyboard div.key { height: 50px; font-size:50px;

jQuery on() change in IE8

断了今生、忘了曾经 提交于 2019-12-08 18:23:07
问题 Using jQuery 1.7.1, I'm trying to create an event handler for the change event on a dropdown. The dropdown is dynamically added to the DOM. Seems to work nicely on most browsers, but oh that kooky IE8 wants to be difficult. Is there a workaround? Should this work? I'm doing a lot of reading here and elsewhere and the input seems to be conflicting in many cases and the proposed solutions that I've found/tried haven't worked for me. Can anyone clarify whether this should work in IE8 for .state

View print CSS in IE7 or IE8

删除回忆录丶 提交于 2019-12-08 18:01:56
问题 I'm debugging a site that has problems with element positioning when printing (I have a separate print.css file linked by a link element with the media="print" attribute). This problem only occurs in IE7 and IE8. What I'm looking for is a way to view the page using the print media type, but while still having IE8's developer tools available to view element details and edit in real-time, etc. The function I'm looking for would be similar to the "Display CSS by Media Type" feature in Chris

Controlling quicktime movie from javascript does not work in IE

為{幸葍}努か 提交于 2019-12-08 17:52:27
I've got a problem controlling a quicktime movie from javascript. I am embedding a video in my HTML page using <video> HTML5 element - with fallback to quicktime if the browser doesn't support it (e.g. IE 8) (I have a specific requirement of "no flash", but quicktime is allowed). The video is displayed in a popup; when the popup is being closed, I want to stop video playback. I can do this successfully in HTML5, but the quicktime control is not working. My html looks like this: <video width="360" height="298" autobuffer="autobuffer" controls="controls" id="video" tabindex="0"> <source type=

Can't get @font-face with Internet Explorer 8

╄→гoц情女王★ 提交于 2019-12-08 17:22:53
问题 I'm having trouble getting my client's custom font face to show up in IE8. It shows up in IE 9 & 7, and Chrome obv. I'm not sure why this one version of IE would be causing trouble. Here is my include statement in my html <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="../styles/ie/cherokee_ie.css" /> <![endif]--> And here is the cherokee_ie.css file @font-face { font-family: 'cherokee'; src: url('../../custom.eot'); src: url('../../custom.eot') format('embedded-opentype'), src:

IE8 security warning

ぃ、小莉子 提交于 2019-12-08 16:41:44
问题 On a https site that I am working on, I keep getting "Do you want to view only the webpage content that was delivered securely?. This webpage contains content that will not be delivered using a secure HTTPS connection, which could compromise the security of the entire webpage." I made sure the site has relative links. Form actions are relative as well. All the image src is relative too. This popup only happens in IE8, IE7 does not do anything. Works fine in Firefox too. Any ideas what could

Any way to programmatically force IE8 to open popups in a new window instead of a tab?

泄露秘密 提交于 2019-12-08 16:23:54
问题 Is there a way to programmatically instruct IE8 to open a popup in a new window rather than a new tab? I know that IE supports modal windows but I have a bunch of legacy code with ordinary popups. Update: I am using Javascript's window.open() method to create popup windows. However, when a user has their IE8 settings set to "Always open popups in a new tab", the popup is launched in a new tab rather than a new window. 回答1: Using html, the best you can do is set open page target to blank.

jQuery: IE8 margin collapses when using slideUp()/slideDown()

ぃ、小莉子 提交于 2019-12-08 14:59:56
问题 I've uploaded a test file here: http://dl.dropbox.com/u/2201804/IE8test.html If you click on the "Click me" divs, you'll see the "Feedback" divs appear using slideDown(). Clicking a "Click me" in another box slides the currently showing feedback up and slides down the appropriate feedback. In IE8, after the slideUp()/slideDown() actions are complete, the margin between the boxes collapses. Is this a problem with jQuery's animation or a display bug in IE8? 回答1: overflow: hidden; should do the

full size background image in ie8

放肆的年华 提交于 2019-12-08 13:59:26
I used this property in css but its not working in IE8 html{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../images/bg.jpg', sizingMethod='scale'); -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../images/bg.jpg', sizingMethod='scale')"; } body { background-image:url(../../images/bg.jpg); background-repeat:no-repeat; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; } I got many solutions on stackoverflow but none of them worked. How can I solve this? Try this <div id="bg"> <img src=

Strange behavior Highcharts pie chart in document mode IE8

别说谁变了你拦得住时间么 提交于 2019-12-08 13:50:37
I have 4 pie charts next to each other in a bootstrap grid which all show well in IE11 document modes IE5, IE7, IE9+, but not on IE8. What it does in document mode IE8: When I refresh the page with ctrl+f5: the charts show correct. When I refresh with f5: the charts have a way to big container and display out of screen (and way out of the grid) My JS: $(function () { var chart; var options = { chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false, height: 200 }, legend: { align: 'right', verticalAlign: 'top', x: 0, y: 40, layout: 'vertical' }, credits: { enabled: false }