internet-explorer-7

Stop Youtube player in IE7 (using Rob W solution)

感情迁移 提交于 2019-12-13 07:08:12
问题 I'm using this script made by Rob W and everything works fine except for IE7. Here it is the jsfiddle page. I've also tried importing this to enable JSON on IE, but it still doesn't work on IE7. There is a way to solve this problem? 回答1: Unfortunately, there is no way to solve this problem (except for upgrading browser), because IE7 does not support the postMessage method. This method is required, because it's the only way to communicate with the embedded YouTube frame. postMessage on frames

IE7 Subnav, two positioning issues

巧了我就是萌 提交于 2019-12-13 07:04:40
问题 Site in question: http://khill.mhostiuckproductions.com/siteLSSBoilerPlate/ If you test the above link in IE7 (I am using IE9 with browsermode and browser compatability for IE7), there is a positioning problem with the subnavs. Hover over about us, then hover over home, and then go back to About us. You will see the sub-nav has moved to the right by the width of the LI above it. This is coded purely in CSS. This works perfectly in all browsers except for IE7, I would like to keep this working

IE6-7 Javascript

元气小坏坏 提交于 2019-12-13 06:40:48
问题 I am using the "mimic igoogle tutorial with cookies" by James Padolsey http://james.padolsey.com/tag/cookies/ I have encountered a problem with the way that IE6 & 7 interprets the javascript. I have found the problem but I have no way of working around it. The following code is long but the problem is only in one small section /* * Script from NETTUTS.com [by James Padolsey] V.2 (ENHANCED, WITH COOKIES!!!) * @requires jQuery($), jQuery UI & sortable/draggable UI modules & jQuery COOKIE plugin

IE7 problems with displaying text in TD

吃可爱长大的小学妹 提交于 2019-12-13 06:27:20
问题 I can not figure out why the text inside the TD is not displayed in IE7. I am frustrated to the core cuz it works in FF! All I am trying to do is dynamically build a table onload... Any help will be greatly appreciated. The complete script is at pastebin 回答1: User insertRow and insertCell to add Rows and Cells Ex: var row = table.insertRow(); row.id= rowid; var headerCell = row.insertCell(); headerCell.colSpan = colspan; headerCell.className = "rightAligned"; headerCell.innerHTML = "Header

What ftp library to use in VB6

冷暖自知 提交于 2019-12-13 06:19:36
问题 We are using the builtin ftp in VB6. (Drag and drop control) The ftp dll that follows VB6 is tied to IE. And after upgrading from IE6 to IE7 the DLL changes and makes it impossible to connect to a password protected ftp. What ftp libraries/dll's are available to use from VB6? Preferably open sourced. 回答1: Any COM library will do the trick, for example a .NET dll compiled with the 'Register for COM Interop' attribute. This pure .NET piece of code might do the work for you. 来源: https:/

Google Maps API v3 not loading without fitbounds, zooming causing infinite loop/stackoverflow

折月煮酒 提交于 2019-12-13 06:05:53
问题 Previous question here: stack overflow with Google maps API (IE7 IE8) I found the following question in the mean time: Google Maps API v3: Can I setZoom after fitBounds? The solution there works just fine, when I have more than one marker on the map. However when I visit a subpage of groupbke.young.netaffinity.net eg. https://groupbke.young.netaffinity.net/hotels/ireland/dublin/dublin/young-testing-hotel-liege/specials/bed-and-breakfast the map will only load if map.fitBounds() is called. On

stack overflow with Google maps API (IE7 IE8)

醉酒当歌 提交于 2019-12-13 06:00:09
问题 I've been fighting an issue with google maps on our site which occurs on first load on IE7 and IE8. I was trying to deal with the solution by combining firefox and ie8 debuggers, but it's quite difficult (and my boss is pushing me on other issues as well) as the JS is minified and IE debugger cant do a thing about it. We have two versions of the same site, one at irelandhotels.com and the dev environment at groupbke.young.netaffinity.net. First one has 500+ markers, the dev environment only 5

CSS: help neded for IE7

一个人想着一个人 提交于 2019-12-13 05:39:50
问题 For some reason http://funnyfurniture.net/ and http://funnyfurniture.net/p/5/teak-root-garden-chair/ are so badly broken in IE7. Can somebody suggest a fix? 回答1: It's because you're using display: inline-block on .content li.shadow-pod . IE7 only supports display: inline-block on elements that are naturally inline (such as <span> ), unless you hack it into shape. Use this: .content li.shadow-pod { /* your other rules */ display: inline-block; *display: inline; zoom: 1 } That's using the Star

Disabled scroll bar (grayed out), except in IE7

心不动则不痛 提交于 2019-12-13 05:29:34
问题 I have an overlay and to disable scrolling while the scroll bar is still visible ( grayed out ), I used: CSS html.noscroll { position: fixed; overflow-y: scroll; width: 100%; } It works properly in IE8 and higher, but in IE7 the scroll bar is still enabled, and I can still scroll through the page. Does anybody have an idea how I can solve this problem? 回答1: overflow:scroll makes IE displaying the scrollbar in all cases, even if it is not needed. That's what you want to do ? IE6 & 7 are known

IE7 Line Height issue?

余生颓废 提交于 2019-12-13 05:14:42
问题 I have a link containing a span which should read something like "link +", this displays correctly in all browsers except ie7: <a style="display: inline; width:200px;" href=""> Open a ticket <span style="float: right">+</span> </a> Visit http://jsfiddle.net/nGJ5b/ in ie7 to see what I mean. Has anybody knowledge of a fix for this? 回答1: You can try and display every element as a block: <a style="display: block; width:200px;" href=""> <span style="float: left; display: block;">Open a ticket<