internet-explorer-9

Why cant I get nested array property in IE9?

核能气质少年 提交于 2019-12-11 18:49:53
问题 I'm accessing an array stored as an object via jQuery's .data method but for some reason I cannot get the nested property in IE9 var $commentdata = $comment.data('comments'), $position = $commentdata.playtime; In every other browser it works fine. However in IE9 I get the following error:- Error: Unable to get value of the property 'playtime': object is null or undefined Any idea why this may be and how I can fix it? EDIT: Here is the function that is adding the data to the dom: function

SetWinEventHook crahes IE when used in BHO (Browser Helper Object)

主宰稳场 提交于 2019-12-11 17:39:52
问题 I have a C# BHO which sets a hook so that I can track when IE gets focus: public class BHO : IObjectWithSite, IOleCommandTarget { delegate void WinEventDelegate(IntPtr hWinEventHook, uint eventType, IntPtr hwnd, int idObject, int idChild, uint dwEventThread, uint dwmsEventTime); const uint WINEVENT_OUTOFCONTEXT = 0; const uint EVENT_SYSTEM_FOREGROUND = 3; [DllImport("user32.dll")] static extern bool UnhookWinEvent(IntPtr hWinEventHook); [DllImport("user32.dll")] static extern IntPtr

Struts2 File Upload doesn't work on Internet-Explorer

て烟熏妆下的殇ゞ 提交于 2019-12-11 16:53:20
问题 I am having issue with Struts 2 file upload for Word file(.docx, .doc) in Internet Explorer. It works fine in Chrome and Firefox, but I am not sure what I am missing for IE. I am using IE9. I appreciate your advice. <action name="saveOrUpdateUser" method="saveOrUpdate" class="com.adaptivsol.action.UsersAction"> <interceptor-ref name="defaultStack"> <param name="fileUpload.maximumSize">104857600</param> <param name="allowedTypes"> text/plain, application/word, application/msword, application

IE9 strange position fixed issue

时光毁灭记忆、已成空白 提交于 2019-12-11 15:46:32
问题 If you go here, while scrolling down the page you will notice that the right panel containing shopping and categories is moving along also... I use this script for this: $(function () { var btn = $('.scroll'); var btnPosTop = btn.offset().top; var win = $(window); win.scroll(function (e) { var scrollTop = win.scrollTop(); if (scrollTop >= btnPosTop) { btn.css({ position: 'fixed', top: 10, marginTop: 0, 'z-index': 1, width: '260px'}); } else if (btn.css('position') === 'fixed') { btn.css({

css drop down div not working in IE9

痴心易碎 提交于 2019-12-11 15:41:02
问题 I have a div that when you mouseover has a child div appear to display information. The basic code is as follows: HTML <div id="container"> <div id="hidden_div"> <iframe></iframe> </div> </div> CSS #container { position: absolute; height: 20px; width: 40px; top: 8px; left: 30px; } #hidden_div { position: absolute; background: url(../_images/inside_btn_back.png) repeat; height: 60px; width: 350px; top: 0px; left: 0px; margin-top: 20px; z-index: 50; display: none; border: 1px solid #a08f89; }

IE 9 is not rendering images with Raphael JS library

让人想犯罪 __ 提交于 2019-12-11 15:29:33
问题 I am making a Raphael JS animation, and for some reason, I cannot get images to render in internet explorer 9. here is my code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=9" /> <link type="text/css" rel="stylesheet" href="css/main.css" /> <script type="text/javascript" src="scripts/raphael-min.js"></script> <script type="text/javascript" src="scripts/jquery-1.7.min.js"></script> <script type="text/javascript"> $(document)

Can I force IE9 *from the user side* to operate in quirks/standards mode?

我的梦境 提交于 2019-12-11 14:59:38
问题 I've looked at a dozen different "force IE9 quirks/standards mode" questions, and none of them answer what I'm trying to find out. I want to force the IE9 that's installed on my Windows machine to use quirks mode (or IE9 Standards Mode, or whatever mode). How do I do this IN THE BROWSER SETTINGS? That's right: I DO NOT want to know how to change page HTML to tell the browser to operate in mode X or Y. (I already know how to do that!) I want to configure MY browser to always view everything it

SCRIPT5039: Redeclaration of const property using IE9

痞子三分冷 提交于 2019-12-11 14:29:02
问题 I am optimizing my website across IE browsers. Everything works fine except for IE9. I have a function similar to this one: var history = new Array(); function loadPage(page, parameters) { $(".dynamic_load").fadeOut(400, function(){ $(this).fadeIn(400).html("loading").load(page, parameters, function(response){ $(".dynamic_load").html(response).show(); }); if (history.length > 5) { history.shift(); } history.push(page); }); } and I am getting an error SCRIPT5039: Redeclaration of const

HTML form default values override actual values at post time in Internet Explorer 9

寵の児 提交于 2019-12-11 14:07:58
问题 I am just testing the brand new Internet Explorer 9 Beta with my website. I see a weird behaviour for some form values and I am not sure if it is my mistake or a bug in IE9. What do you think? I have one form which declares several hidden input fields like this <input type="hidden" name="NewStatus" /> <input type="hidden" name="lastSaveStatus" value="" /> When the page is being submitted, the values are saved like this (in JavaScript): newStatus.setAttribute("value", myNewStatus); var

Drop down menu doesn't work in IE9

只愿长相守 提交于 2019-12-11 13:52:48
问题 http://www.streetstyles4all.co.uk/test4.html Can anyone please advise. I have finished my menu now and it works in most browsers apart from IE9. The menu itself works but the drop down doesn't. The GENERAL and SHOP menu items should drop down and reveal many other sub menu items. Just not in IE9 :-( Can anyone help? The page in question is http://www.streetstyles4all.co.uk/test4.html 回答1: If you remove the filter property from the following rules: #menu #menu li:hover then the display is