I've searched all around for a solution and have found nothing. Here is some sample code:
$('#myselect').append(
'<option id=\'myoption\'></option>'
);
$('#mytextfield').change(function() {
$('#myoption').html($(this).val);
});
so, i want to change the select option's html whenever my text field is changed. any ideas? thanks!