Skip to content

Instantly share code, notes, and snippets.

@zawnaing11
zawnaing11 / select2-with-bootstrap 5
Created October 2, 2025 15:41
design bugs fix for select2 integrating with bootstrap 5
.select2-container--default .select2-selection--single .select2-selection__arrow {
margin-top: 33px !important;
}
.select2-container--open {
margin-top: -32px !important;
}
@zawnaing11
zawnaing11 / gist:51b2e92ac0c965b9814b6a98c2b11a5c
Created October 2, 2025 14:29
the generic hierarchyCheckbox function
In Html
<select id="state_id" data-child="district_id">
<option value="">-- Select State --</option>
<option value="1">State A</option>
<option value="2">State B</option>
</select>
<select id="district_id" data-child="township_id">
<option value="">-- Select District --</option>