internet-explorer-7

Stop running this script

孤街醉人 提交于 2019-12-18 11:44:53
问题 Stop running this script? A script on this page is causing Internet Explorer to run slowly. If it continues to run, your computer might become unresponsive. I'm sure we've all seen this useful and informative error message from IE7 (or rather IE8 in IE7 mode). I need some help with removing this message. So, for my work, I need to get our website working in IE7. Apparently, some of our clients can't upgrade or use another browser (corporate regulations or something). Anyway, the page in

How to maintain PNG alpha transparency when using “-ms-filter” property

天涯浪子 提交于 2019-12-18 11:43:11
问题 I have the following HTML: <a><img src="myfile.png" /> Some text</a> And this css: a:hover { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75); opacity: .75; } The problem with this occurs in both IE 8 and IE 7. When the PNG image is subject to the -ms-filter or filter , its alpha transparency is ruined. Try it out and you will see. It is a bug in both IE 8 and IE 7. Can I remove the "-ms-opacity" and "filter"

I've decided not to cater for IE6 - What tasty CSS treats can I use? [closed]

梦想的初衷 提交于 2019-12-18 10:41:29
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Ok firstly, this is not a discussion on whether I should be catering for IE6. I'm sure there's hundreds of threads on S.O. where you

Issue on IE7 when page is scrolling.Text is not proper

情到浓时终转凉″ 提交于 2019-12-18 09:41:52
问题 I am facing this issue on IE7 only, when I am scrolling the page: Text of some section is not scrolling properly, although a horizontal line is scrolling. May be it's a loading issue but I need to solve this. Technology is HTML5, bootstrap, CSS3. Framework is MVC. Look at the Search Again text in the image above. 回答1: This sounds like a the IE7 Text Redraw bug: http://zomigi.com/blog/ie-7-button-text-redraw-bug/ http://www.lifeathighroad.com/web-development/fixed-ie7-button-text-redraw-bug/

Getting actual height of an auto-heighted element in IE

心不动则不痛 提交于 2019-12-18 09:13:12
问题 I'm pretty confused! with this: ... <div id="main"> <div id="content"> <div class="col1"> ...COLUMN1 CONTENT GOES HERE... </div> <div class="col2"> ...COLUMN2 CONTENT GOES HERE... </div> </div><!-- #content --> </div><!-- #main --> ... there are columns as you see, and I want to set their container element's height to the maximum size of both columns(plus 130px). so by using Prototype framework: //fixing column height problem Event.observe(window,"load",function(){ if(parseInt($('col1')

IE7 hangs when using (to much) ajax calls with async: false

那年仲夏 提交于 2019-12-18 07:24:42
问题 I have the following function in a much larger script that loads translations from a php file: function loadLanguages(language){ var data = new Object(); data.language = language; var dataString = $.toJSON(data); var langSt = $.ajax({ url: "/VID/ajax/loadtranslations.php", data: ({data: dataString}), async: false }).responseText; var languageArr = $.evalJSON(langSt); return languageArr; } Works in FF, but in IE7 and IE8 the browser will hang.. When I comment out the ajax call in the function

Using the IE8 'Developer Tools' to debug earlier IE versions

我们两清 提交于 2019-12-18 06:17:20
问题 I am less than satisfied in my HTML/CSS/JS debugging of pages with IE6 and 7 specific bugs. I am aware that IE8 has a Firebug clone, called 'Developer Tools' installed. Is it possible to have IE8 installed (maybe on a VM, i don't mind), set it to compatibility mode (is there one for IE6?), then perform JS debugging and live HTML changes, using the IE8 Developer Tools , just like we can in Firebug? many many thanks mieze 回答1: There are differences between native IE6/7 and the IE8 compatibility

jQuery AJAX problem in IE7 (possibly other versions as well)

こ雲淡風輕ζ 提交于 2019-12-18 04:55:16
问题 Can anyone enlighten me as to why the following code won't work in IE7 but it works just fine in Chrome/Firefox? $(document).ready(function(){ $.ajax({ type: "POST", dataType: "text", cache: false, url: "/ajax/ajax.asp", data: "cmd=check_forfeits", success: function(msg) { return false; } }); }); The javascript error IE throws out is 'Permission Denied' If I remove that bit of code from the JS file for the page in question the page works just fine, no errors, so the error lies in that bit of

Using multiple-class selectors in IE7 and IE8

て烟熏妆下的殇ゞ 提交于 2019-12-18 04:34:15
问题 I know IE7 & IE8 supposedly have support for using multiple CSS class selectors, but I can't seem to get it to work. CSS: .column { float: left; display: block; margin-right: 20px; width: 60px; } .two.column { width: 140px; } .three.column { width: 220px; } .four.column { width: 300px; } HTML: <div class='two column'>Two Columns</div> <div class='three column'>Three Columns</div> <div class='four column'>Four Columns</div> It always end up using the .four.column rule. Any ideas on what I'm

IE7 does not respect z-index

只谈情不闲聊 提交于 2019-12-18 03:31:35
问题 Running in compatibility mode the calendar below renders behind the textboxes below. IE8 displays the calendar how I need it to. My CSS .MyCalendar .ajax__calendar_container { border:1px solid #7F9DB9; background-color: #ffffff; z-index : 1004 ; width:190px; } the textboxes which are overlaying the calendar don't have their z-index set anywhere although I have tried in my server side code to set their z-index to -1 if I detect IE7 to no avail. Any suggestions? 回答1: IE has problems with z