The Materialize select list dropdown closes when clicking on the scrollbar on IE, although it works fine in Chrome.
I have checked some solutions on the internet, and code below helped me to work in IE:
//Hiding the below lines in js
$newSelect.on('blur', function() {
if (!multiple) {
$(this).trigger('close');
}
options.find('li.selected').removeClass('selected');
});
But after that, the dropdown is not closing when no options are selected (when clicking on the screen).
Can someone please help me with an idea to close that dropdown?
Thanks in advance.
Got a solution. Adding the below line worked for me,