Answers for "not show arrow of dropdown bootstrap"

1

bootstrap select box arrow not visible

// bootstrap select box arrow not visible
// Solution - Add form-select class next to the form-control class 
// for B5 Version

<select class="form-control form-select">
    <option>Select Title</option>
    <option value="1">Title 1</option>
    <option value="2">Title 2</option>
</select>
Posted by: Guest on September-01-2021
0

bootstrap dropdown toggle show until closed

// Prevents menu from closing when clicked inside 
        document.getElementById("Dropdown").addEventListener('click', function (event) { 
            alert("click outside"); 
            event.stopPropagation(); 
        });
Posted by: Guest on February-19-2021

Browse Popular Code Answers by Language