internet-explorer-9

bgiframe plugin causes error in IE9

对着背影说爱祢 提交于 2019-12-31 18:42:06
问题 The uiquery plugin bgiframe (version 2.1.1) causes the following java script error in Internet Explorer 9: jquery.bgiframe.js, line 94 character 5 My menu does not work any more, I hope the reason is this error. Any ideas? ADDED: The line in jquery.bgiframe.js is: this.insertBefore( document.createElement(html), this.firstChild ); and the error sais: SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5) 回答1: After some more research I found a solution myself on the bgiframe site: I downloaded

bgiframe plugin causes error in IE9

倖福魔咒の 提交于 2019-12-31 18:41:29
问题 The uiquery plugin bgiframe (version 2.1.1) causes the following java script error in Internet Explorer 9: jquery.bgiframe.js, line 94 character 5 My menu does not work any more, I hope the reason is this error. Any ideas? ADDED: The line in jquery.bgiframe.js is: this.insertBefore( document.createElement(html), this.firstChild ); and the error sais: SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5) 回答1: After some more research I found a solution myself on the bgiframe site: I downloaded

iFrame Not Loading IE 8 [duplicate]

扶醉桌前 提交于 2019-12-31 05:14:31
问题 This question already has answers here : Blank iFrame in IE (4 answers) Closed 5 years ago . My website seems to work in all browsers but IE 8. Everything loads fine by the iFrame. Here is my HTML code: <head> <title> Title </title> <link rel="stylesheet" type="text/css" href="style.css" media="screen" /> <script type="text/javascript" src="respond.min.js"></script> </head> <body> <iframe src="http://instagram.com/p/cR5BORA8Ij/embed/" width="300" height="400" frameborder="0" scrolling="no"

Problems with simple modal in IE9

半城伤御伤魂 提交于 2019-12-31 05:05:08
问题 Yesterday I launched a new website. Before I uploaded the files to my server, I tested the website in IE8, Firefox, Safari and Chrome, and everything seemed to be OK. But I just installed IE9 and my Simple Modal boxes don't show up in this browser. I'm using the following javascript code: jQuery(function ($) { $('a.modal').click(function (e) { $('#' + this.id + "content").modal({onOpen: function (dialog) { dialog.overlay.fadeIn('fast', function () { dialog.container.fadeIn('fast'); dialog

parent.location.reload in iframe not working IE

試著忘記壹切 提交于 2019-12-31 04:58:07
问题 I need refresh in parent site / refresh my browser when I click testing. I have source index.php: <iframe id="test" src="/careertest/q.php"></iframe> and in q.php: <a href="#" onclick="parent.location.reload(true);">testing</a> Its working in FF LAtest version + Chrome but not working in IE 9. He said "script70 :Permission denied." I am already change parent.location.reload(true) with: window.parent.location =window.parent.location.href; or document.domain=document.location.href; but still

$.get not working in IE

落花浮王杯 提交于 2019-12-31 04:18:11
问题 This displays 1 no matter what I echo in getbillno.php - also why I'm not showing that part anymore. Nothing would change unless I change bill into a string or put tbl (just to see what happens) in its place, so I figured the problem is not in getbillno.php but with this part right here. I'm very much new to jQuery and I really can't see what's wrong with this. This works perfectly with Chrome, FF, and in Safari. I have other functions with jQuery in the same page and those work fine in any

SVG Scaling Issue in IE9

半城伤御伤魂 提交于 2019-12-31 04:00:09
问题 Having issues using small svg in IE9. It get's chopped off on the right/is not centered: (Supposed to be a "X") My SVG: <?xml version="1.0" encoding="utf-8"?> <!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 364

mp3 audio works in all browsers but not IE9

不问归期 提交于 2019-12-31 01:59:48
问题 I have three mp3 audio files that play fine in all browsers but play for only 1.x seconds in IE9 unless I change "controls" to "autoplay" in which case it plays just fine. I was then sent the original, unedited file in .wav format. I encoded it myself to mp3 but have the same problem. However, if I create my own mp3 audio file and insert it into the same markup, it works in all browsers, including IE9 with the "controls" attribute. I can only think there is something about the settings in the

Dynamically added form elements are not POSTED in IE 9

ε祈祈猫儿з 提交于 2019-12-30 11:14:09
问题 I have a form which is used to make a Test. User enter a question and provides question type and the Answer options and saves the Question. What has gone wrong is that when the user writes one option and click a button for Add to Options the content of the Text Box for the Options are added to the DOM to show as an answer of the Question. This all was working well Until IE9 was not there. When the user click on the Add to Options Button the Option is shown in the DOM but the value is not

IE9 HTML5 placeholder - how are people achieving this?

主宰稳场 提交于 2019-12-30 09:26:30
问题 I'm trying to use the placeholder="xxx" attribute in my web application, and I don't want to have a special visual for IE9. Can people throw out some good suggestions for achieving this functionality in IE9? I've found a couple links on here but none of the suggested scripts were sufficient... and the answers were from mid-2011, so I figured maybe there is a better solution out there. Perhaps with a widely-adopted jQuery plugin? I do not want to use anything that requires intrusive code such