internet-explorer-8

IE8 losing session details

泄露秘密 提交于 2020-01-25 09:57:05
问题 I have a Java web app that intermittently loses session data. The problem only occurs with users on IE8. I have used IEWatch to monitor the http traffic, and it seems that the correct session cookies are being sent (JSESSIONID2). When the request gets to the server the session has become unbound from the custom session monitor (this uses HttpBindingListener). As I have mentioned this problem is intermittent and I have even gone through a transaction with the customer doing exactly the same

jQueryRotate - Issue in IE8

…衆ロ難τιáo~ 提交于 2020-01-25 09:02:06
问题 js fiddle for what I want to achieve : http://jsfiddle.net/g3qgS/1/ The image of sun rises from bottom and then using jquery rotate, its being rotated till 360 degrees. These 2 animations run fine in chrome, FF, IE9 but not in IE8. In IE8, the sun will rise from bottom till the point where it is supposed to , then before the rotation, it comes back to its original position and rotates. I am using jquery rotate plugin (http://code.google.com/p/jqueryrotate/) for this, I know this can also be

Javascript ForEach Function does not work in IE

血红的双手。 提交于 2020-01-24 13:52:26
问题 how could I write the following Code that it is supported in all browsers? Because it seems that the forEach-Function is not supported in IE8... digits.forEach( function( value, index ) { // create a span with initial conditions var span = $( '<span>', { 'class': 'digit0', 'data': { 'current': 0, 'goal' : value } } ); // append span to the div#number span.appendTo( $( 'div#number' ) ); // call countUp after interval multiplied by the index of this span setTimeout( function() { countUp.call(

Javascript ForEach Function does not work in IE

邮差的信 提交于 2020-01-24 13:52:05
问题 how could I write the following Code that it is supported in all browsers? Because it seems that the forEach-Function is not supported in IE8... digits.forEach( function( value, index ) { // create a span with initial conditions var span = $( '<span>', { 'class': 'digit0', 'data': { 'current': 0, 'goal' : value } } ); // append span to the div#number span.appendTo( $( 'div#number' ) ); // call countUp after interval multiplied by the index of this span setTimeout( function() { countUp.call(

Javascript does not work in IE8

二次信任 提交于 2020-01-24 09:34:06
问题 The following JavaScript works on IE7 but not on IE8: onclick=history.back(1) or history.go(-1) Any suggestions on why this is the case and how to overcome it. 回答1: Have you tried: onclick="history.back()" with the quotes? And, responding to your statement that it doesn't work: au contraire, mon ami. The following two files run fine on my IE8 install, using the files x1.html : <html><head></head><body> X1 <hr> <a href="x2.html">x2</a> </body></html> and x2.html : <html><head></head><body> X2

Controlling quicktime movie from javascript does not work in IE

对着背影说爱祢 提交于 2020-01-23 18:17:45
问题 I've got a problem controlling a quicktime movie from javascript. I am embedding a video in my HTML page using <video> HTML5 element - with fallback to quicktime if the browser doesn't support it (e.g. IE 8) (I have a specific requirement of "no flash", but quicktime is allowed). The video is displayed in a popup; when the popup is being closed, I want to stop video playback. I can do this successfully in HTML5, but the quicktime control is not working. My html looks like this: <video width=

How to avoid security warning in IE when landing an HTTPS page?

我是研究僧i 提交于 2020-01-23 10:10:59
问题 In IE 8, I am getting the below error message when trying to land on a https from a http page in an online store web portal.If i change the settings in my IE,It will not prompt the message.But since its a browser setting,we can ask each customers to do so . Is there anything which we can do for not showing this message in IE. ? 回答1: Make sure you're delivering all content including external CSS, JS and images using https protocol. The warning should go away. I haven't found any convenient

in IE8 using jQuery JSTree when scrolling the click handlers don't work anymore

别说谁变了你拦得住时间么 提交于 2020-01-22 16:55:08
问题 I'm using JStree to create a basic tree. In every browser this opens, closes,... fine except in IE8. I narrowed the problem down to this: When I don't scroll the page and the tree is positioned at the top of the page all clicks work fine. When I have scrolled the page (eg 20px) and then try to open the tree this doesn't work. The weird thing is that if I click 20px above the arrow to open the tree this works. The amount of pixels I need to click above the actual arrow depends on how much I've

Create IE Addons

折月煮酒 提交于 2020-01-21 11:11:33
问题 I'm looking for a tutorial to make addons for IE 8 or 9. Can you provide me with a resource. Please, for the sake of peace and everything else, I already know I can make FF or Chrome addons. I want to make an IE addon. Thanks. 回答1: Have you seen this site? 来源: https://stackoverflow.com/questions/3730034/create-ie-addons

HighCharts.js is not rendering chart under IE8

[亡魂溺海] 提交于 2020-01-21 06:37:10
问题 I am using HighCharts together with Python to dynamically create charts. All works fine, however I get cannot read property "0" of undefined exception under IE8. Unfortunetly my client want it to work under IE8 as well. So heres the code of the main function: function generateChart(series) { var chart = new Highcharts.Chart({ chart: { renderTo: 'company_chart', }, xAxis: { type: "datetime", }, yAxis: [{ title: { text: "T1", }, },{ title: { text: "T2", }, }, opposite: true, }], plotOptions: {