Bootstrap wysiwyg not able to add hyperlinks in IE 10 & IE 11

746 Views Asked by At

The problem is if you click the insert hyperlink button in IE 10 and IE 11 you will receive the drop down menu to enter the url, but you can not set focus on the textbox to enter a URL. everytime you click on the box the focus goes inside the below content editable

How to repro:

Open this link http://mindmup.github.io/bootstrap-wysiwyg/ in IE 10 and IE 11, click on the icon to add link and click on the URL box and try entering something

2

There are 2 best solutions below

0
On

Similar to Aamir's solution, you can also solve this using the following JavaScript snippet.

$(".dropdown-menu > input").click(function (e) {
    e.stopPropagation();
});
0
On

Just over-ride following CSS class.

.dropdown-menu.input-append input {
        position: absolute;
        z-index: 999999;
}