Hi,
I want to show dropdown inside div when click checkbox.
There is a checkbox on the page. Clicking this checkbox has a dropdown inside the div. This will move with the div.
<div class="custom-select" id="content" style="display:none">
<select class="row">
<option value="0">Select car:</option>
<option value="1">Red</option>
<option value="2">Green</option>
<option value="3">White</option>
<option value="4">Black</option>
</select>
</div>