emposha / FCBKcomplete

Jquery facebook like(fancy) multi-select
http://www.emposha.com
383 stars 115 forks source link

IE10 extra cross mark is added in text area on typing more than 6 characters. #139

Open manpreetsingh89 opened 10 years ago

manpreetsingh89 commented 10 years ago

On typing more than 6 characters, extra cross mark is being added in text area to type search text. It is not happening in any other browser except IE. FYI : Not able to see cross mark in the F12 (developer tool) as part of HTML. ie_cross_mark

kyleneideck commented 9 years ago

Looks like this is the -ms-clear pseudo-element. If you want to disable it, this works for me with FCBKcomplete 2.7.5 in IE 11:

ul.holder li.bit-input input::-ms-clear {
    display: none;
}