Open vtslab opened 7 years ago
src/leaflet.fusesearch.js Line 252 listItems[i].remove(); gives an error on my IE11 .remove() not supported So I changed to get the parent of the node to delete and then delete the child. This works on IE11
listItems[i].remove();
listItems[i].parentNode.removeChild(listItems[i]);
src/leaflet.fusesearch.js Line 252
listItems[i].remove();
gives an error on my IE11 .remove() not supported So I changed to get the parent of the node to delete and then delete the child. This works on IE11listItems[i].parentNode.removeChild(listItems[i]);