I am working on a django project, that is using bootstrap4 and I\'m with a little problem with dropdown toggler.
The toggler only toggles the dropdown-menu after the seco
I came across the same issue recently, i solved it by writing custom script:
Edit Link 1 Link 2 Link 3 $(".filter-dropdown").on("click", ".dropdown-toggle", function(e) { e.preventDefault(); $(this).parent().addClass("show"); $(this).attr("aria-expanded", "true"); $(this).next().addClass("show"); });