internet-explorer-8

How to to make collapsing table rows (with IE8 support also)?

这一生的挚爱 提交于 2019-12-11 18:03:37
问题 I want the last two rows of a table to be folded and collapse when user click on something like "Click Here to see more rows". that would appear as the last row of the first two rows, and turn into some toggle button if a user wants to fold them back. After understanding there's no way to do this via CSS2 only, I guess that if I want IE8 support as well I would need to use javascript/jquery. I found a jquery accordion example and tried to implement it on a table, but it didn't really work.

extension of the backgroundposition in the function animate() dosen't work in IE7 or IE8

≯℡__Kan透↙ 提交于 2019-12-11 17:39:10
问题 This code is extension created by Alexander Farkas http://bit.ly/bZzOC8 It is usefull for could used two values on the function animate() as in this example: $('div').animate({ backgroundPosition:'(0 -5500)' },330); Unfortunately this extension doesn't work when use IE7 or IE8. The next code is the backgroundPosition extension: /** * @author Alexander Farkas * v. 1.02 */ (function($) { $.extend($.fx.step,{ backgroundPosition: function(fx) { if (fx.state === 0 && typeof fx.end == 'string') {

border-radius and IE 7 and IE8

别来无恙 提交于 2019-12-11 17:27:30
问题 I am applying border-radius on my layout and I having problems with IE 7 and IE8. I'm using the PIE.htc but I still can not do the compatibility works. The code is: border-top-left-radius: 4px; border-top-right-radius: 4px; border-top: 0; -moz-border-top-left-radius: 4px; -webkit-border-top-left-radius: 4px; behavior: url(PIE.htc); I'm testing in ieTester, can anyone help me? 回答1: if you use behavior: url(PIE.htc); then your Pie.htc should be in the same folder as your html page or master

java script Alerts Unicode display issue in IE 8

牧云@^-^@ 提交于 2019-12-11 17:10:30
问题 currently im working on symfony based large application. i m having issue on displaying unicode characters inside java script alerts in IE browsers only fire fox not a issue working fine for example alert("<?php echo __("English word to auto convert to other languages by symfony ")?>"); In IE 8 version i can only see boxes when alert pops up. have anybody idea why this happen please. regards 回答1: Check the encoding of the page. This should be in an encoding that supports unicode characters.

IE8 causing FILE input entry to be blank via SendKeys

天大地大妈咪最大 提交于 2019-12-11 16:03:36
问题 Application : HTA (therefore IE) This is an application that uses SendKeys to populate a FILE input field. Issue : File is never uploaded. Description : An offscreen form (invisible to user) uploads a file to the server. The file input is entered via SendKeys (javascript). Appears to be isolated to when IE8 is installed. Does anyone know of what may be causing this and any workarounds? Sorry for lack of information. I will edit the question with additional information if no answers are

Galleria works locally in all browsers but only IE8 & Chrome when hosted

一笑奈何 提交于 2019-12-11 16:01:45
问题 This page: http://www.ipjnet.talktalk.net/code/photos.html works in Opera11,Chrome, Firefox3 & IE8 locally. The same page hosted only loads correctly in IE8 & Chrome I'm new to galleria and jquery so please be gentle with me as I think I must be missing something very obvious. Thank You very much 回答1: The slashes in your script files are the wrong ones... <script src="galleria\src\jquery-1.4.4.js"></script> <script src="galleria\src\galleria.js"></script> should be: <script src="galleria/src

Fancybox Popup not removing overlay in Chrome and IE

别来无恙 提交于 2019-12-11 15:27:55
问题 http://www.teachhub.com/sevcik-tester-ooyala Fancybox close event is not removing the dark overlay in Chrome and IE. Firefox works great. I'm using fancybox 2. The commented out items below, I've tried forcing the close event and it's not working. The main window closes, but the dark overlay remains. <script type="text/javascript"> jQuery(document).ready(function() { jQuery.noConflict(); }); </script> <div style="width: 312px;"> <script type="text/javascript"> jQuery(document).ready(function(

Highcharts column chart rendering transparent columns in IE8

非 Y 不嫁゛ 提交于 2019-12-11 14:52:31
问题 The column chart renders fine on all browsers except IE8. This is such a strange error. I can't replicate it in jsfiddle (yes I tried with the Jquery version I am using-1.9.1 as well)but I put the code on it in hopes someone has faced the same problem before. http://jsfiddle.net/danushkab/kp5es/6/ $('#monthlychart').highcharts({ chart: { type: 'column', events: { click: function(event) { location = '/GVEMS_2.0/cvh/monthConsumption?date=08/2013&building=cvhcampus'; } } }, title: { text:

JavaScript / jQuery: get selection function not working in Firefox and Chrome

て烟熏妆下的殇ゞ 提交于 2019-12-11 14:34:03
问题 I am using the following function to get the selected text (i.e. text selected by the user) in a contenteditable div. This works perfect in IE 9 but not in IE 8, Firefox or Chrome (both latest versions). Can someone here help me to modify this in a way that it works at least in Firefox and IE 8 as well (Chrome is not a must) ? My function (working): function GetSelection() { selTxt = ''; if (typeof window.getSelection != "undefined") { var sel = window.getSelection(); if (sel.rangeCount) {

Scale background image to fit ie8 window

本小妞迷上赌 提交于 2019-12-11 14:14:04
问题 I'm using a drupal 7 module to load in a background image but IE8 doesn't support css3 resizing. background-image: url('image.jpg'); background-size: cover; I can't easily load in the image using the usual methods such as putting it in a DIV or using the ms-filter alphaimageloader to load it. A javascript solution is fine if this can't be done with just CSS that ie8 supports. (Something that also works for ie7 would be fantastic too, but ie8 is the priority). 回答1: Add Full Size Background