internet-explorer-7

Need a good Internet Explorer 6, 7, 8 standalone [duplicate]

时光毁灭记忆、已成空白 提交于 2019-12-29 10:15:11
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Running Internet Explorer 6, Internet Explorer 7, and Internet Explorer 8 on the same machine I need recommendations on a good Internet Explorer standalone for Internet Explorer 6, Internet Explorer 7 and Internet Explorer 8. I tried using Tredosoft's Internet Explorer 7 standalone and MultiIE for Internet Explorer 6, but select elements were being blocked as pop-ups, even when the pop-up blocker was turned off,

Javascript: Object doesn't support method 'freeze'

主宰稳场 提交于 2019-12-29 07:41:36
问题 I am trying to create an enummeration in Javascript. The javascript code used is var FeatureName = { "FEATURE1": 1, "FEATURE2": 2, "FEATURE3": 3, "FEATURE4": 4, "FEATURE5": 5 } Object.freeze(FeatureName); When the method Object.freeze(FeatureName) , is called it works fine for all the browsers except IE7 and IE8. Is there any alternative to this? 回答1: John Resig provides an alternative. I haven't tried it in the browsers you mention. Try it and let us know. http://ejohn.org/blog/ecmascript-5

Element.prototype in IE7?

懵懂的女人 提交于 2019-12-28 15:56:09
问题 I'm trying to extend all dom elements so i can get and remove their children. The function is below (works in FF and Chrome). Is there an equivalent in IE7 to extend the base dom object? if (!Element.get) { Element.prototype.get = function(id) { for (var i = 0; i < this.childNodes.length; i++) { if (this.childNodes[i].id == id) { return this.childNodes[i]; } if (this.childNodes[i].childNodes.length) { var ret = this.childNodes[i].get(id); if (ret != null) { return ret; } } } return null; } }

document.body.appendChild(i)

江枫思渺然 提交于 2019-12-28 12:15:24
问题 I am getting error only in IE7 as document.body is null; when I debug with Microsoft script editor I am getting the error in the following line: i.e. document.body.appendChild(i) Code: function nm_eraseCookie(name){ nm_createCookie(name,"",-1) } var i=document.createElement('IMG'); i.src='//e.netmng.com/pixel/?aid=403'; i.width=1; i.height=1; document.body.appendChild(i); nm_createCookie('nm_belgacom_bt', escape('tv1=bun_intvtel;tv2=;tv3=;phone1=hbs_discoveryline;phone2=hbs_classical_line

windows authentication not working in ie7

别等时光非礼了梦想. 提交于 2019-12-28 11:54:28
问题 Really need help with this and tried lots of things and run out of ideas. I have a site hosted on an internal development server, accessible for staff internally. the server setup is windows 2008 R2, iis 7.5 sql 2008 express. Im authenticating using active directory. in Chrome the site loads, and automatically logs me in recognising my name. When viewing the site in IE7 the response is: "401 - Unauthorized: Access is denied due to invalid credentials. You do not have permission to view this

IE6 + IE7 CSS problem with overflow: hidden; - position: relative; combo

£可爱£侵袭症+ 提交于 2019-12-27 11:56:43
问题 So I have created a slider for a homepage, that slides some images with a title and teaser text using jQuery. Everything works fine, and I went to check IE and found that IE 6 and 7 kills my slider css completely. I can't figure out why, but for some reason I can't hide the non active slides with overflow: hidden; I've tried tweaking the css back and forth, but haven't been able to figure out what's causing the problem. I've recreated the problem in a more isolated html page. <!DOCTYPE html

IE7 jQuery 1.9.1 issues

妖精的绣舞 提交于 2019-12-25 18:44:06
问题 In only IE7, the script error message shows-up in the status bar, which cripples the UI. For example, if I click on any of the anchor tags, it doesn't work. By the way, this script error location and callstack was taken using the Web Development Helper for IE7. If I include jquery-1.9.1.min.js , in IE7 I see the following script error messages: at http://10.15.1.77:8080/mhs/3p/jquery-1.9.1.min.js [4] wt code: if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t) at http://10.15.1.77:8080/mhs

<body> position: relative, inline VS .css-file (IE7)

ε祈祈猫儿з 提交于 2019-12-25 07:59:03
问题 Im experiencing some really wierd behaviour in IE7. I want to position my <body> -tag relative. If i type body { position: relative; } in my css file, my menu (which is position: absolute) doesn't work. But if i use <body style="position: relative;"> It works. How can that possibly make a difference? There is not javascript that is removing the css attribute or something like that. 回答1: Was curious about this, but as the question stands @thirtydot's comment seems to be correct: the answer is

IE7 on XP render the media=“print” stylesheets

走远了吗. 提交于 2019-12-25 07:16:25
问题 In my web page, I'm using 2 stylesheets : <link rel="stylesheet" href="css/screen-layout.css" media="screen" type="text/css" /> <link rel="stylesheet" href="css/print-layout.css" media="print" type="text/css" /> inside print-layout.css there is : .ui-dialog * {display: none !important;} When I viewed my webpage on IE7, it's supposed to ignore the media="print" one, but it didn't, it applied the display: none , causing all the elements to be hidden. And in the debugbar plugin for IE7, I can

ActiveX control in IE intranet zone - blocked without a prompt?

旧巷老猫 提交于 2019-12-25 06:24:01
问题 I'm writing an intranet page for my company that requires the use of an embedded dll (COM). The dll is registered on all clients computers so it doesn't need to be downloaded from the page, it just needs to run. I've tried using the following code to embed the control: var newObj = new ActiveXObject("servername.classname"); And this works when testing locally, but from the intranet the object fails to instantiate with the js error "automation server can't create object". I suspect this is