internet-explorer-9

Insert Text at current position TINYMCE IE9

a 夏天 提交于 2019-12-21 05:24:23
问题 How to insert text into a tinyMce edtitor at the current position. It works perfect in Chrome, FF, Safari, but in IE it always starts at the top of the textarea. I currently do the following: tinyMCE.execCommand('mceInsertContent',false, 'blabla this is tekst'); I tried with focus, other commands, nothing works :(. 回答1: Thanks for the help, but nothing worked. I found my own solution, and I felt like sharing this was needed, because I only found outdated solutions, that did not work :(. The

IE9 border-radius shorthand not supported?

喜夏-厌秋 提交于 2019-12-21 04:04:30
问题 I have a few things I've made in the past that have the border-radius attribute like this: border-radius: 7px; This is not working in IE9. I thought IE9 was supposed to support border-radius? If you need an example, see this site. All of the boxes on the right hand side of the page should have a curved border. It works in Chrome and Firefox... On another annoying, unrelated note, I found out today that IE9 doesn't support the :last-child pseudo class. What an incredible letdown so far... 回答1:

Make a CORS request in IE9 with cookies?

倾然丶 夕夏残阳落幕 提交于 2019-12-21 03:36:34
问题 In IE9, I am attempting to make a cross origin request with cookies. However, even when I have the Access-Control-Allow-Origin, Access-Control-Allow-Credentials, Access-Control-Allow-Methods all set to the appropriate values (the origin domain, true, and GET, POST), IE9 still isn't sending or setting cookies from the request. Here's the script I'm using: var xdr = new XDomainRequest() xdr.open("http://mydomain.com/cors.php") xdr.withCredentials = true; xdr.send(); Any idea on how to get

audio tag not working in IE9

℡╲_俬逩灬. 提交于 2019-12-20 15:11:40
问题 I'm experimenting with the audio tag. The file below does work in Google Chrome, but not in IE9. I'm always getting "audio tag not supported". I also tried wav, flac, wma --> same result. I suspect there might some issue with the compaitibility mode, but I don't find where to change it. Can anyone help? Kind regards Georg <html> <head> </head> <body> <audio controls="controls" src="c:\concerto.mp3" > audio tag not supported. </audio> </body> </html> 回答1: Add the HTML5 doctype to the page and

audio tag not working in IE9

£可爱£侵袭症+ 提交于 2019-12-20 15:09:06
问题 I'm experimenting with the audio tag. The file below does work in Google Chrome, but not in IE9. I'm always getting "audio tag not supported". I also tried wav, flac, wma --> same result. I suspect there might some issue with the compaitibility mode, but I don't find where to change it. Can anyone help? Kind regards Georg <html> <head> </head> <body> <audio controls="controls" src="c:\concerto.mp3" > audio tag not supported. </audio> </body> </html> 回答1: Add the HTML5 doctype to the page and

ExtJs4 + IE9 = Object doesn't support property or method 'createContextualFragment'

左心房为你撑大大i 提交于 2019-12-20 09:39:57
问题 I'm working with ExtJs on IE9.. and i almost always get this error.. Microsoft JScript runtime error: Object doesn't support property or method 'createContextualFragment' What dose it means? What 'createContextualFragment' is needed for? And how to fix this? 回答1: createContextualFragment() is a method of Range objects that creates a document fragment from an HTML string. It's present in Firefox and WebKit and Opera but is currently non-standard (it's not in the DOM Level 2 Range spec but is

Javascript code in iframes in IE9 not working

蹲街弑〆低调 提交于 2019-12-20 09:34:42
问题 I've a very complete site in ASP.NET wich uses iframes. I'm working to change an old control we'd been using to show dialogs to use jQuery UI dialogs. I'm also making sure everything works well in IE9. The fact is: the script I've in the pages shown in iframes is not working in IE9. Why? Because Object, Array and String are undefined. There may be some others issues, I've seen only this ones. There is no chance (because a lot of reasons) to stop using iframes on some dialogs. And I'd rather

IE9 and TEXTAREA newlines

元气小坏坏 提交于 2019-12-20 05:48:05
问题 We display a piece of signed XML in a TEXTAREA. The signing takes into account the whitespace, so it is critical that this is maintained. The user then copies and pastes this into an application that validates the XML... we've not had a problem with this until now... IE9 is rending the text slightly differently. When I copy it into a HEX editor, I can see that IE9 is rendering newlines as 0xA... put it into compatibility mode (or use IE6,7,8, Chrome, Firefox etc.) and it gets rendered as 0xD

IE does not refresh after Ajax get/posts

半城伤御伤魂 提交于 2019-12-20 03:57:09
问题 I have a small problem that I don't know how to deal with. I've written some jQuery post/gets which work fine in FF, Opera and Chrome. But when run from explorer (any version) the updated content from the request does not get loaded into the browser. I've used developer tools and debugged the scripts, and the requests are sent with correct parameters. The actions are even executed, but it's not visible until I've cleared the browser history or open/close the browser. This may be a silly

Order of iteration differs in IE9

帅比萌擦擦* 提交于 2019-12-20 03:23:38
问题 In IE9, the numeric keys of object properties are sorted and that results in different order of iteration in IE9 compared to IE8 where the order is preserved as it is inserted. var obj = { "5": "John", "1": "Kumar", "3": "Rajesh", "2": "Yogesh" } for(var key in obj) alert(key) Result //1,2,3,4 in IE9 //5,1,3,2 in IE8, IE7 Is there anyway I can disable this auto sorting by IE9. If not then is it possible to somehow make the browser understand that the keys should be identified as strings