Bootstrap wysiwyg cannot add hyperlinks in IE

The problem is that if you click on the insert hyperlink button in IE, you get a dropdown menu to enter the url, but you cannot set focus to the textbox to enter the url. every time you click on the field focus is inside the content below being edited

How to reproduce:

Open the link http://mindmup.github.io/bootstrap-wysiwyg/ in IE 8, click on the icon to add the link, and click on the URL field and try to enter something

+3


source to share


1 answer


Internet Explorer 8 is not supported by this editor. Since the documentation :

Requires a modern browser (tested in Chrome 26, Firefox 19, ... told users to work in IE10).



A quick look at the source reveals a couple of elements that would have prevented support for IE 8, such as using FileReader

(introduced in IE 10) and window.getSelection

(introduced in IE 9).

CKEditor supports Internet Explorer 8.

+2


source







All Articles