internet-explorer-8

Console.log in IE8

喜欢而已 提交于 2019-12-08 07:26:37
问题 I have below piece of code, which, when tested, does not work in IE8. I have it running on IE11 and Chrome and it runs perfectly. I have debugged the code in IE8 which points at "console.log as a problem area. The most interesting thing is that when I start debugging JS in IE8 - it kicks it and this piece of code start working. Then again, on leaving debugging, closing and re-opening file - same story until you get into debugging))). jQuery(function () { $('.Response input[type=radio]')

Odd behaviour in web page when page uses 'localhost' vs machine's name

一曲冷凌霜 提交于 2019-12-08 06:56:27
问题 I have a web page which I am developing where I can drag divs on the page. It works fine in all the browsers except IE6 & IE7 where when I drag a div the div shows beneath the dropped on div instead of on top of it. This is not the problem at hand per se. I know IE6 & IE7 have issues with z-index settings. This is a complicated page with different divs have different z-index values. The page works fine in IE8 IF the url on my machine uses 'localhost'. If I switch the url to use my machine's

full size background image in ie8

孤者浪人 提交于 2019-12-08 05:52:32
问题 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

2 IE8 Webpage views - Look completely different? Why?

a 夏天 提交于 2019-12-08 05:28:38
问题 Here's the original page that I coded using "Adaptive Design", and has no support for mobile devices: http://opportunityfinance.net/Test/savedateIE8/index.html Looks great in IE 8 as it should via the pic below: Here's a page that I optimized for mobile devices, basically it is EXACTLY the same as the first page, except it adds in <meta> tags and such for mobile devices. Looks good in all browsers that I test, except IE 7 (which I could care less about), and IE 8 (WHICH I REALLY CARE ABOUT) A

IE8 rounded corners issue

走远了吗. 提交于 2019-12-08 05:16:07
问题 I've encountered odd problems with rounded corners in IE8. .htc file was used and http://wpdev.net78.net/ looks OK in IE8, however there's a problem with 2 of the corners - 1st is under TEST link and second at the bottom. I've applied the same rules as to the other elements, however this one don't wants to cooperate... Any ideas? 回答1: You should switch to PIE.htc (see http://css3pie.com/). It's a newer and much improved alternative to the old HTMLRemix HTC file you're using. It uses the same

No session share and avoid navigation buttons in browser while opening application window

会有一股神秘感。 提交于 2019-12-08 05:07:53
问题 We are using VBScript code to open the application window to avoid users having forward/back navigation while opening the IE8 window. This is the code used. Set WshShell = CreateObject("shell.application") Set IE=CreateObject("InternetExplorer.Application") IE.menubar = 1 IE.toolbar = 0 IE.statusbar = 0 'here we open the application url IE.navigate "http://www.google.com" IE.visible = 1 WshShell.AppActivate(IE) This is working fine, however the problem is that if the user opens multiple

Javascript functions don't work in IE8 when passed as parameters

∥☆過路亽.° 提交于 2019-12-08 04:37:43
问题 We're using jQuery UI MultiSelect widget on our website for various fields. For consistency we use it even for non-multi selects. The example code we use is: jQuery('#model').multiselect({ multiple : false, minWidth : 'auto', height : 'auto', header : false, selectedText: multiselect_set_label, open : multiselect_fit_widget, close : multiselect_free_keyboard, create : multiselect_fit_label, beforeopen : multiselect_bold_options }); Its not completely same everywhere, so we can't have just one

Forcing IE To display word document in browser

自闭症网瘾萝莉.ら 提交于 2019-12-08 04:03:52
问题 We have an ASP Classic application that provides document management. We have a fetch page that fetches the document from SAN storage and delivers it to the user, based on whether or not they are logged in. With IE6 and Word 2000 (when I wrote the code :)) The word documents displayed in the browser. Now, with IE8 and Word 2010 installed, we are always prompted to open/save the document. We: Set the mimetype (Response.ContentType = GetMIMEType(basename)) Set the charset (REsponse.Charset = ""

Why does jQuery's parents/closest(selector) functions behave differently in IE8?

不打扰是莪最后的温柔 提交于 2019-12-08 04:02:25
问题 I have a jQuery script that works perfectly fine in Chrome 11 and Firefox 4, but it appears to be broken in IE8. It appears to be related to the use of the jQuery parents() function with a selector. It does not return any elements when run in IE8. I've created a simplified version of my problem which shows the same symptoms over at jsFiddle, to prevent a big chunk of code here. Can anybody tell me what might be going on here? UPDATE: Using closest() seems to result in similar behavior, but

IE8 bug - CSS “a:hover” attribute not working

一个人想着一个人 提交于 2019-12-08 03:58:14
问题 I have a list of anchor links that have associated :hover attributes - really simple. The CSS works fine in IE7 and all other browsers, but not in IE8. .header-nav ul li a:hover { border-bottom: 1px dotted #fff; } I tried changing my doctype declaration from HTML5 to HTML4 strict and nothing changed - any ideas? Thanks! EDIT: associated HTML: <ul> <li><a href="http://www.google.com/">Getting Started</a> </li><li><a href="http://www.google.com/">Refill</a> </li><li><a href="http://www.google