Bootstrap Select-box shows multiple times in bootstrap modal wizard. how to fix that? the image is shown below:
i have tried many things from stack questions but no use.
My html/php part is below:
<div class="wizard" id="satellite-wizard" data-title="Create Server">
<div class="wizard-card wizard-card-overlay" data-cardname="location">
<div class="wizard-input-section">
<select name="location" data-placeholder="Monitor nodes" style="width:350px;" class="chzn-select">
<option value=""></option>
<option>Atlanta</option>
<option selected>Chicago</option>
<option>Dallas</option>
</select>
</div>
</div>
</div>
JS Code
$(document).ready(function() {
$.fn.wizard.logging = true;
var wizard = $('#satellite-wizard').wizard({
keyboard : false,
contentHeight : 400,
contentWidth : 700,
backdrop: 'static'
});
$(".chzn-select").chosen();
wizard.on('closed', function() {
wizard.reset();
});
$('#open-wizard').click(function(e) {
e.preventDefault();
wizard.show();
});
});