internet-explorer-8

IE8 Printing issues with Jqplot

蓝咒 提交于 2019-12-20 02:15:34
问题 I am testing jqplot with IE8. When I tried to print, the axes labels were offset. I used Andrew Bullock's Canvashack as a workaround.(http://blog.muonlab.com/2010/06/02/getting-position-absolute-canvas-elements-to-print-correctly-in-ie/) It still did not fix the issue. I am new to scripting. Is there anything wrong with my code? Please help. Thanks, Shu <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http:/

jQuery on IE8, error: Object doesn't support this property or method

廉价感情. 提交于 2019-12-20 01:14:19
问题 I have jQuery for a WordPress theme I'm building. I've given up for now on testing IE6 and IE7 (layouting hell), and now I'm testing it using IE8. Every time I click on a prettyPhoto link OR a jQuery cycle link, JS gives out this error and fails to bring up the lightbox or move the slider. As usual his works fine in all the other browsers. The site is in http://themes.thefirm.gambit.ph You can see the error when in IE8, and when you click on the left or right arrows of the header area. Object

Respond.js with twitter bootstrap on ie8 and below

你离开我真会死。 提交于 2019-12-20 01:13:48
问题 i'm implementing a responsive website with twitter bootstrap but on iexplorer 8 and below can't use media queries. I create a simple example for try respond.js but mediaqueries continue not working on iexplorer 7-8, here is the html: <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="utf-8"> <title>Bootstrap 101 Template</title> <meta name="Description" content="Web description here" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="//netdna

Respond.js with twitter bootstrap on ie8 and below

可紊 提交于 2019-12-20 01:13:04
问题 i'm implementing a responsive website with twitter bootstrap but on iexplorer 8 and below can't use media queries. I create a simple example for try respond.js but mediaqueries continue not working on iexplorer 7-8, here is the html: <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="utf-8"> <title>Bootstrap 101 Template</title> <meta name="Description" content="Web description here" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="//netdna

Twitter widgets.js throws JavaScript error “Expected identifier” on IE8

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-19 21:23:13
问题 Anybody run into a JavaScript error when trying to run Twitter For Web widgets.js on Internet Explorer 8 (IE8)? If so, do you know how to fix this or how to handle it gracefully? CODE Just adding this block of code, which loads the widgets.js file throws an error on IE8: <script> window.twttr = (function (d, s, id) { var t, js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src= "https://platform.twitter.com/widgets.js"; fjs

Attribute selectors, JavaScript and IE8

笑着哭i 提交于 2019-12-19 19:48:37
问题 I'm attempting to use attribute selectors and CSS for formatting elements. The HTML looks like: <div id="user" highlight="false">User Name</div> The CSS is: [highlight=true] { background-color: red; } [highlight=false] { background-color: white; } And then there's some accompanying JavaScript: if( foo ) { node.setAttribute('highlight', true); } else { node.setAttribute('highlight', false); } This works in Firefox and Chrome. When the highlight attribute gets changed by the JavaScript, the

IE8 Array.prototype.slice: 'this' is not a JavaScript object

戏子无情 提交于 2019-12-19 17:46:13
问题 I'm getting this error message only in IE8, and I don't know how to convert the existing function for IE8 compatibility. _initEvents : function() { var self = this; Array.prototype.slice.call(this.menuItems).forEach(function(el, i) { var trigger = el.querySelector('a'); if (self.touch) { trigger.addEventListener('touchstart', function(ev) { self._openMenu(this, ev); }); } else { trigger.addEventListener('click', function(ev) { self._openMenu(this, ev); }); } }); window.addEventListener(

migrating from ie8 to ie9

て烟熏妆下的殇ゞ 提交于 2019-12-19 11:27:46
问题 What changes should be made in an application while migrating from ie8 to ie9 regarding css,html, javascript,DOM 回答1: Compliance with W3C standards. That's all. Internet Explorer 9 is Microsoft's way to full Web Standards' support. In most of the cases, you'd remove previous versions' CSS, DOM hacks. Or conditionally allow them for versions lower than 9.0, in order to render your pages in standards mode. Now you can take advantage of some CSS 3.0 and HTML5 features, but keep in mind that most

Raphaeljs and Internet Explorer, problem when clicking an element

百般思念 提交于 2019-12-19 10:37:08
问题 I have the following piece of code in javascript that basically hide or show a Raphaeljs set when I click on it. It works perfectly well under Google Chrome, FireFox and Safari, but not at all under Internet Explorer. var paper = Raphael(document.getElementById('ADiv'), 450, 490); var group = paper.set(); var toxicRect = paper.rect(0, 0, 120, 60, 10 ); toxicRect.attr({"stroke-width": 1, "stroke" : "#3083BE", "fill" : "#D1DFE9"}); group.push( toxicRect ); var toxicRectText = paper.text(60, 25,

AngularUI - Compatible browsers

↘锁芯ラ 提交于 2019-12-19 09:58:58
问题 I tried to open the AngularUI website (http://angular-ui.github.io/) in IE8. UI was not rendered properly in IE8(working fine in latest version of chrome/firefox). This led me to search browser compatability of AngularUI modules. A discussion in the groups pointed me that AngularUI-bootstrap module does not support IE8( https://groups.google.com/forum/#!topic/angular-ui/8L0739rxdes) But could find the info for other modules listed below. UI-Utils UI-Modules NG-Grid UI-Router So the question