Topic: MBD Dropdown doesn't work in internet explorer
I want to know if https://mdbootstrap.com/mdb-quick-start/ is updated? cause only in internet explorer the dropdowns doesn't show, 🙁
Add comment
Mikołaj Smoleński
staff answered 8 years ago
Please add the following code to Your scripts to have compatibility with IE:
$(document).on('click', function(e) {
let dropdownEl = e.target.parentNode;
if(dropdownEl.classList) {
if(dropdownEl.classList.contains('dropdown-toggle')) {
$('.dropdown-menu').removeClass('show');
$(e.target.parentNode.parentNode.childNodes).addClass('show');
} else {
$('.dropdown-menu').removeClass('show');
}
} else {
$('.dropdown-menu').removeClass('show');
}
});
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Status
Answered
Specification of the issue
- User: Pro
- Premium support: No
- Technology: MDB jQuery
- MDB Version: -
- Device: -
- Browser: -
- OS: -
- Provided sample code: No
- Provided link: No