internet-explorer-7

CSS - IE7 & 8 Issues

最后都变了- 提交于 2019-12-25 04:33:18
问题 UPDATE I noticed this occurs only when I use slideUp/Down.If I use show/hide everythings OK END UPDATE In my site I am developing/designing, I have 2 issues. In IE7, the sliding menu seems to not show, until I move the mouse abit. alt text http://img27.imageshack.us/img27/4422/7282009105215pm.png In IE8, after a menu slides up, the margin seems to be removed. alt text http://img27.imageshack.us/img27/4592/7282009105247pm.png The JS (if required) $(function() { $("#mainNav li:has(ul) > a")

CSS - IE7 & 8 Issues

一笑奈何 提交于 2019-12-25 04:33:01
问题 UPDATE I noticed this occurs only when I use slideUp/Down.If I use show/hide everythings OK END UPDATE In my site I am developing/designing, I have 2 issues. In IE7, the sliding menu seems to not show, until I move the mouse abit. alt text http://img27.imageshack.us/img27/4422/7282009105215pm.png In IE8, after a menu slides up, the margin seems to be removed. alt text http://img27.imageshack.us/img27/4592/7282009105247pm.png The JS (if required) $(function() { $("#mainNav li:has(ul) > a")

Background Color and Italics sets off Internet Explorer 7 bug

我的梦境 提交于 2019-12-25 02:28:25
问题 The following code demonstrates the issue I'm encountering: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <style> p { background-color:#FFF; } </style> </head> <body> <img src="http://www.google.com/intl/en_ALL/images/logo.gif" style='float:left;'> <p><em>This is an italic sentence.</em></p> <p><strong>This is a bold sentence.</strong></p> <p>This is a normal sentence.</p> </body> </html> When this code is viewed in IE7,

Override (IE7) browser keyboard handling from Silverlight

家住魔仙堡 提交于 2019-12-25 00:46:49
问题 When I test my Silverlight 2 app in Firefox, when Silverlight has focus, I have no problem receiving every key press via the Page.KeyDown event. When I test it in Internet Explorer 7, I can only get keyboard events that the browser doesn't already handle. HOWEVER, I can override those same keyboard events in javascript. For instance, Ctrl + D . I can override this in javascript by doing the following, but I can't do the same thing in Silverlight!! function initKeyHandling(){ document

What in this jQuery code is failing for IE6 and IE7?

拥有回忆 提交于 2019-12-24 21:42:46
问题 This piece of jQuery duplicates an item in a form. It works in all browsers except for IE6 and IE7. This is because when it duplicates the form -- it does not increment the name attribute (as it does in all other browsers ) : <div class="payment"> <input type="text" name="payments[0][:date_paid]" id="payments_0_:date_paid"> <input type="text" name="payments[0][:amount_paid]" id="payments_0_:amount_paid"> </div> <div class="payment" style="display: block;"> <input type="text" name="payments[1]

Using a different font causes line-height spacing issues in IE6 and IE7

陌路散爱 提交于 2019-12-24 19:08:58
问题 I have a form with a couple of columns and two or three inputs in each. When I just use the default font there is no problem and everything lines up properly but when I use a different font it adds a little vertical space underneath the labels. the font I'm trying to use is TheMixRegularCaps - http://www.fontslog.com/themix-regularcaps-otf-32939.htm How can I fix this? thanks 回答1: The problem is most likely the font itself. Some fonts have more vertical spacing than others. You should use CSS

What is the location of session cookies in IE7?

你说的曾经没有我的故事 提交于 2019-12-24 18:18:32
问题 Should I be able to see per-session cookies, created by IE7 (on Vista) here: C:\Users\myUsername\AppData\Local\Microsoft\Windows\Temporary Internet Files That is where my standard cookies are stored. 回答1: Session cookies are stored in memory 回答2: Persistent Cookies vs. Session Cookies Cookies are either stored in memory (session cookies) or placed on your hard disk (persistent cookies). Persistent cookies are written to the Cookies folder under either your user profile folder or the Windir

Permission denied after window.open() in IE7

泄露秘密 提交于 2019-12-24 14:29:31
问题 We have a winforms application with an embedded IE control. In this IE control, we run a web application (I control the web application but not the winforms application). In the web application, I run some javascript to open a sub-window and populate it with HTML: var features = "menubar=no,location=no,resizable,scrollbars,status=no,width=800,height=600,top=10,left=10"; newTarget = "reportWin" + String ( Math.random () * 1000000000000 ).replace( /\./g ,"" ); reportWindow = window.open('',

jQuery AJAX GET html data IE8 not working

≡放荡痞女 提交于 2019-12-24 11:51:45
问题 This is the code but it's not working on IE8 & 7 (IE9 , chrome,firefox, safari,opera are all ok). I have tried a lot of things (meta utf-8 code, php header code, taking alerts, cache:false).What can i do , i need help. Thanks for your interests. var request = $.ajax({ type:"GET", url: "_veri.php?t=icerik_getir&id="+tabopen, dataType: "html", }); request.done(function(msg) { $(".tab-contentmenu").html(msg); }); EDIT: alert gives me the data of requested in all browsers but still no requested

IE7 window.location.href

谁说胖子不能爱 提交于 2019-12-24 10:25:36
问题 I want to redirect a IE7 user, but window.location.href does not seen to work properly. Any suggestion? $('.navigation-next a').bind('click', function (a) { a.preventDefault(); window.location.href = $(this).attr('href') }) Worked with: $('.navigation-next a').bind('click', function(a) { location.href = $(this).attr('href') }) Thanks! 回答1: You have to use window.location.replace() on IE7 and earlier. <script type="text/javascript"> function redir(url){ window.location=url; } </script> <!--[if