I have these selects:
$('#AccountID, #PageID, #TopicID')
.focus(function () {
$('option[value="99"]', this).remove();
store.setItem($(this).attr('id'), $(this).val());
})
.change(function () {
store.setItem($(this).attr('id'), $(this).val());
$('#detailData').html("");
});
Is there a way I can make it so that if a users select from the drop down that the Title attribute of the select is populated with the text from the option that the user selected?
Im not sure what you are asking for exactly, but Im guessing you mean something like this example Ive made?
html:
js: