internet-explorer

nivo slider - not appearing in internet explorer

谁说我不能喝 提交于 2020-01-24 22:53:11
问题 front end design is my weak spot so im a bit lost. The nivo slider for this site(www.myfriendshotel.com) im working on is working fine in firefox but not in ie. The only reason on google why it wouldnt work is the styling not being closed properly but I have checked all of that. any ideas ? Thanks, Alex 回答1: IE was probably switching to compatibility mode .. I had that problem with Nivo... to disable compatibilty mode : <meta http-equiv="X-UA-Compatible" content="IE=edge"> 回答2: Just to close

Image not displaying in IE only

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-24 20:47:27
问题 I have an image tag <img src="https://biossantibodies.com/image-raw/4449.jpeg"> Where it displays properly in Chrome/Firefox/Safari, but not IE. Result Fiddle link: https://jsfiddle.net/bheng/6z3u7dxm/ Chrome IE Console Error Network Tab Result How can I debug this? 回答1: set up the IE debugger to record console messages for blocked and insecure content... Tools>Internet Options>Advanced tab, check "Always record developer console messages". Save changes... now when you open the dev tool it

Shouldn't this CSS work in IE9?

☆樱花仙子☆ 提交于 2020-01-24 20:13:11
问题 I have a div that I'm rotating as it fades in. It works in every modern browser, but the code for IE doesn't seem to be working. #box { width: 400px; height: 400px; display: inline-block; position: absolute; transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -ms-transform: rotate(0deg); transition: all 0.8s 1s ease-in-out; -webkit-transition: all 0.8s 1s ease-in-out; -moz-transition: all 0.8s 1s ease-in-out; -o-transition: all 0

jQuery text attribute selector

喜你入骨 提交于 2020-01-24 20:12:23
问题 I am trying to use the text attribute as a selector, but I can't quite grasp the behaviour, would really appreciate if someone could explain. For example given <span class="span_class"><a class="a_class">text</a></span> , $('a.a_class').text() gives "text" as expected. However $('a.a_class[text]') wouldn't match any elements, and neither would $('span.span_class > a.a_class[text]') , but $('span.span_class* > a.a_class[text]') would (although not in IE). The only workaround I can think of for

ScrollIntoView For Table Row Not Working in IE 8

ⅰ亾dé卋堺 提交于 2020-01-24 18:30:07
问题 Can someone please explain why the following does not work in IE8. Basically i'm just trying to scroll a Table Row into view contained within an overflow DIV. Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <script language="javascript" src='scripts/jquery-1.3.2.js'></script> <script language="javascript" src='scripts/jquery.scrollTo-1.4.2.js'></script> <stylesheet type="text/css"> table {border-collapse:

Eval function execution leads to internal error

让人想犯罪 __ 提交于 2020-01-24 17:57:09
问题 I am doing analysis of our application with IE Edge browser, while doing so I found a strange behaviour. Execution of eval function leads to the below error. Even tried sample one like: eval("2"); Error: SCRIPT51: Internal error Please help me overcome this problem, in other browsers I am not facing this issue. 回答1: I'm afraid that this seems to be a browser issue of IE Edge. You can't do anything to work around this issue except of getting rid of all your eval calls. Since your application

How to adjust CSS to display correctly in IE 6?

不羁岁月 提交于 2020-01-24 17:48:32
问题 I have the following HTML+CSS that may be displayed on some small number of older Windows XP machines with IE 6 as a web browser. On a newer browser it should look like this: but IE 6 makes it look like this: So I was curious if there's anything I can do to try to fix this for IE 6? Here's a fiddle to show the code. The image used was this: html: <span id="lbl01">User Commands:</span> <div class="divSmBtns"> <a href="#" id="idBtn" draggable="false" class="smtbBtnCopy smtbBtn" title="whatever"

How to adjust CSS to display correctly in IE 6?

狂风中的少年 提交于 2020-01-24 17:48:05
问题 I have the following HTML+CSS that may be displayed on some small number of older Windows XP machines with IE 6 as a web browser. On a newer browser it should look like this: but IE 6 makes it look like this: So I was curious if there's anything I can do to try to fix this for IE 6? Here's a fiddle to show the code. The image used was this: html: <span id="lbl01">User Commands:</span> <div class="divSmBtns"> <a href="#" id="idBtn" draggable="false" class="smtbBtnCopy smtbBtn" title="whatever"

Setting IE “Optical Zoom” feature using Javascript/CSS

假如想象 提交于 2020-01-24 12:38:05
问题 The site I'm maintaining has been designed pretty rigidly using pixels for font sizes, dimensions, absolute positioning etc. Now there is a feature request to add font resizing by users. While I know that is impossible without redesigning the site from the ground up using relative dimensions, I discovered that the site plays pretty nicely with the IE7/IE8 zoom feature (Ctrl + & Ctrl -). The question is, is there a way to 'suggest' IE to open this site at a default zoom level (of say, 125%)

jQuery click function on LI doesn't work in IE

試著忘記壹切 提交于 2020-01-24 11:45:10
问题 I have a problem which is driving me nuts. I'm a relative Javascript newbie so please be kind :). I have some existing code for a left navigation menu that makes use of the Treeview plugin for jQuery (http://bassistance.de/jquery-plugins/jquery-plugin-treeview/). To quickly explain it, where a line item has more line items under it, a little div with an image (usually an arrow) will be appended to the line item and this little div is clickable to expand the line items under it. That's all