internet-explorer-8

Cannot get image preloading to work correctly in IE8

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-23 02:45:17
问题 I'm working on an image slideshow that allows users to cycle through a set of images in semi-fullscreen. Here's a development version of it: [link removed, was only temp link] There are several ways to progress to the next image: by clicking the large image, by picking a specific thumb, by using the arrow icons or even your keyboard arrows. All of these basically call a js function loadImage with the correct params: function loadImage(id,url) { // general image loading routine // enable

How to stop Knockout 3.2 library loading twice

别说谁变了你拦得住时间么 提交于 2019-12-23 02:28:11
问题 I have the issue that binding expressions such as <div data-bind="text: $data.Property"></div> -where Property is an observable- causes the actual text of knockout's observable function to display instead of the value Property is supposed to represent. This was addressed here In IE8, KnockoutJS 3.2 displaying actual observable function rather than the observable's value. The cause of that issue was that duplicate knockout library files were being loaded. The "UPDATE:" section and answer of

Call change event in IE8 on <input file> programmaticaly

≯℡__Kan透↙ 提交于 2019-12-23 02:01:58
问题 Primefaces 5 I have <input type="file" class="ui-fileupload-choose> in code to upload the files. This input -Tag is generated automatically from a PrimeFaces component <p:fileUpload> . I want to hide the button for input element and use my own styled button for upload. So this is the styled button. <input type="button" onclick="$('#formId\\:uploaderId .ui-fileupload-choose input').click();"> This does function in FF, Chrome and IE9, 10, 11. But in IE8 nothing happens in upload phase. The

What is the source of /path/(null) requests?

不羁的心 提交于 2019-12-22 18:46:28
问题 We are beginning to see requests in our Apache Logs in the form /abc/(null) These requests all have MSIE 8.0 and Trident 4.0 in the User-Agent field. The requests began to appear when we hadn't deployed any changed code for several weeks. What is the source of these requests? Is this a bug in MSIE 8? What is a systematic way to determine if this is a browser bug, javascript library bug or an issue with our code? 回答1: It's likely either a buggy browser, buggy plugin, or a bot. There are a lot

FB Share button Javascript error in IE8

送分小仙女□ 提交于 2019-12-22 12:19:40
问题 I am getting a javascript error for the FB Share button only in IE8. This started after the old Share button was disabled and subsequently re-enabled (see Facebook Share button: is it officially dead?) The error I am getting is: Message: Object doesn't support this property or method FB.Share Line: 128 Code: 0 Char: 188 URI: http://static.ak.fbcdn.net/connect.php/js/FB.Share Any ideas on how to fix this? 回答1: How about doing it this way? http://www.facebook.com/sharer.php?s=100&p[title]=SHARE

IE8 forces compatibility mode when inserting data into a div

你离开我真会死。 提交于 2019-12-22 10:56:25
问题 I've been fighting against IE8's compatibility mode all day and I'm about to chuck a brick at it. I have some code, which uses jquery 1.2 (yes it's old - can't change that), to search for some records in our web app. The results of the search can be clicked on to view the contents of the record (by using .animate() it opens a space under the row and creates another TR underneath and inserts HTML data from a json feed). In IE8, clicking on a result to view the content forces it to reload in

Internet Explorer 8 in Windows XP

那年仲夏 提交于 2019-12-22 10:19:18
问题 I have witnessed how Internet Explorer 8 (IE8) is in Windows XP and how it is in Windows Vista/7. Quite strangely, IE8 seems to be acting like IE7 for certain aspects of CSS and JavaScript (maybe for other elements too). Am I the one who is seeing things? Otherwise, if this is true why is this happening and what are the major differences in IE8 for Windows XP and IE8 for Windows Vista/7? 回答1: Make sure that your IE8 that's acting like IE7 hasn't been flipped into "Compatibility Mode". There's

ie8: is there possible to have transform in pseudo element?

余生长醉 提交于 2019-12-22 10:09:15
问题 i need css transform work on ie8, is there possible to do that? i tried progid:DXImageTransform but it is not working on pseudo element .stack.twisted:before { -ms-transform:rotate(8deg); /* IE 9 */ -webkit-transform: rotate(8deg); -moz-transform: rotate(8deg); transform: rotate(8deg); -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=-0.70710678, M21=0.70710678, M22=0.70710678,sizingMethod='auto expand')";filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678

IE8 float issue with CSS

你。 提交于 2019-12-22 10:04:03
问题 I'm sure this must have been covered before because I'm sure I'm not the first to do this, but I can't find the answer. I am creating a shadow effect for a <div> using repeated background images. In the bottom two corners I use small 9x5 px images. I float them left and right and in Firefox and Safari they look perfect. In IE8 (and possibly other IEs) they float too far to the left and right about about 3px. You can see the issue at here. It's an ebay template for my wife. Thus far I've tried

How can i set the name of IE Extension (BHO In IE)

ⅰ亾dé卋堺 提交于 2019-12-22 09:56:14
问题 How Can i Set the Name of the BHO appear in IE Extension (e.g Manage Addons).. The Name that Appear in the Internet Explorer Addons list is the Namespace of my program when i attach it with regasm.exe. how can i set the name of that.?... Thanks. 回答1: I am working on a C# BHO, and was struggling with this very same question. If you're working with C#, one approach that can be taken is to add code similar to the following in the method that is marked with the ComRegisterFunction attribute. This