Since the plugin is tied to the actual select
element, not the option
elements inside, you should be able to write a function that just alerts out all option details of the contained options of the parent select. Maybe something like:
$("#select").fcbkcomplete({
onselect: function() {
var optionList;
$("option",this).each(function() {
optionList .= $(this).attr("id") + " : " + $(this).val() + "\n";
});
alert(optionList);
}
});
Anthony
2010-03-06 06:00:46