How to append options when click first time on select tag? That mean select tag have no option until click it first time. I try code as below but the options not show until click second time, I want the options show immediately at the first time i click select tag. Please help me.
<select id="cbVoice" onclick="ClickMe()"></select>
function ClickMe(){
if($('#cbVoice > option').length == 0){
var TheOptions = "<option>Option 1</option><option>Option 2</option><option>Option 3</option><option>Option 4</option>";
$('#cbVoice').html(TheOptions);
}
}