internet-explorer-8

IE-8 Compatible issue with Primefaces?

雨燕双飞 提交于 2019-12-12 03:11:48
问题 Hi i am having a problem with IE -8 because when i execute my code in Chrome and mozilla it is good ! but in IE-8 it is not executing properly. saying that dialog.show is not defined <p:calendar value="#{bean.method}" mode="inline"> <p:ajax update="@all" event="dateSelect" listener="#{Bean.method1}" oncomplete="dialog.show()" /> <p:schedule id="dialog" initialDate="#{Bean.method3}"/> showing Errors . When i click on the Date Calendar the Date in the Schedule is getting displayed. but in IE-8

convert image to byte code in javascript IE8

。_饼干妹妹 提交于 2019-12-12 03:07:29
问题 How to convert an Image(png) to byte code in Javascript . I've used this code but in IE8 there is no use in this code because there is no support of canvas element in IE8. function getBase64Image(){ p=document.getElementById("fileUpload").value; img1.setAttribute('src', p); canvas.width = img1.width; canvas.height = img1.height; var ctx = canvas.getContext("2d"); ctx.drawImage(img1, 0, 0); var dataURL = canvas.toDataURL("image/png");alert("from getbase64 function"+dataURL ); return dataURL; }

WAV file only playing on certain computers in ie 8

浪尽此生 提交于 2019-12-12 02:59:59
问题 I have a simple HTML file with Javascript calling a function to play a wav file. It's very basic and works just fine on one of my computers. I press a key on the keyboard and the wav file plays just fine. I run the same file on a different computer and I get a javascript error that says: "Unspecified error." It seems to act like the file I'm trying to play doesn't exist. I haven't attached my code becuase it works flawlessly on the other computer so I'm thinking maybe this is just a internet

responsive website issue in IE7 and IE8

*爱你&永不变心* 提交于 2019-12-12 02:56:40
问题 I am trying to make a standard site responsive. So far it works in IE9, Firefox and Chrome, but it fails in IE7 and IE8 even with inline hacks: http://surfingthebluemarble.com/rtest2.html What is happening is that in IE7 and IE8 the divs fail to stack when they go to 99% width. Thanks as always for your help. umbre 回答1: You're using CSS media queries, which don't work in older versions of IE. You need respond.js. 回答2: IE Less than 9 doesn't support media queries out of the box. use an

Less mixin generate error on IE8

て烟熏妆下的殇ゞ 提交于 2019-12-12 02:53:34
问题 I receive this error on IE8 when I'm using this mixin: SyntaxError: Object doesn't support property or method 'map' >>less<< body{.gradient; } >>mixin<< .gradient(@color: #F5F5F5, @start: #EEE, @stop: #FFF) { background: @color; background: -webkit-gradient(linear, left bottom, left top, color-stop(0, @start), color-stop(1, @stop)); background: -ms-linear-gradient(bottom, @start, @stop); background: -moz-linear-gradient(center bottom, @start 0%, @stop 100%); background: -o-linear-gradient(

IE8 JQuery Disappearing elements issue (only working in quirks mode)

泪湿孤枕 提交于 2019-12-12 02:36:51
问题 I have a website maintenance issue in IE8 only. The site runs fine in all other browsers including IE9 and IE10. I can describe the issue best as follows: In IE8 when the page is loaded, all the elements are displayed properly and everything looks great. However, when I activate a JQuery accordion, the entire page messes up. Here is what happens: 1)the page jumps upwards to a seemingly random location (this might be because the page is being resized according to the the size of the elements

Fancy Box Overlay not working in IE8

给你一囗甜甜゛ 提交于 2019-12-12 02:23:03
问题 I am having an issue with FancyBox and IE8. For some reason IE8 does not recognize the background transparency on fancybox's overlay. It works in IE7 and older and Chrome, Safari, and Firefox. You can see the problem at: http://seabagsc.nexcess.net/tote-bags/kevlar-tote.html Any help would be much appreciated. Thanks! Chuck 回答1: Old question, but in case anyone runs across this, I ended up fixing my IE8 problems with FancyBox by setting <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

“Navigation to the webpage was canceled” when create new mfc project in vs2008

我是研究僧i 提交于 2019-12-12 02:13:49
问题 I have a strange problem in vs2008.When I create new MFC project this popup window open with messege "Navigation to the webpage was canceled." I have been repair my visual studio but the problem remains there. After turn off Internet Explorer from Windows features. 来源: https://stackoverflow.com/questions/12210566/navigation-to-the-webpage-was-canceled-when-create-new-mfc-project-in-vs2008

Twitter button causing JS error in IE8 (Expected identifier)

不羁的心 提交于 2019-12-12 02:03:38
问题 I included a Twitter button on my page, using the code from https://about.twitter.com/resources/buttons A very basic implementation looks like this <!DOCTYPE html> <html> <head> </head> <body> <a href="https://twitter.com/share" class="twitter-share-button">Tweet</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode

In IE8, KnockoutJS 3.2 displaying actual observable function rather than the observable's value

点点圈 提交于 2019-12-12 01:48:47
问题 I am having issues with Knockout (v3.2) in IE8. 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. Looking at the specs (jasmine tests for knockout) I've found that they explicitly don't support text node bindings for IE < 9 (line 442) https://github.com/knockout/knockout/blob/master/spec/bindingAttributeBehaviors