skip to Main Content

Javascript – bootstrap 5 click inside dropdown should not open close the dropdown

I have the following code <html> <head> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"> <script src="https://code.jquery.com/jquery-3.7.1.slim.js"></script> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <div class="dropdown"> <button class="btn btn-primary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false"> Dropdown button <i class="bi bi-x inside-button"></i> </button> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="#">Action</a></li>…

VIEW QUESTION
Back To Top
Search