Guys,
How can i uncheck the auto selected smart select values?
The choices if I open the popup still checked automatically after append.
Using kitchen sink
<li>
<a class="item-link smart-select smart-select-init" data-open-in="sheet">
<select name="color" id="color" multiple>
<option value="1">Test</option>
<option value="2">Test 2</option>
<option value="3">Test 3</option>
</select>
<div class="item-content">
<div class="item-inner">
<div class="item-title">Color</div>
</div>
</div>
</a>
</li>
$('#color')
.append($("<option></option>")
.attr("value",item.value)
.text(item.color));
}