hello,
i have combobox (in fact, several of them), with elements that are added dynamicly.
using jQuery, i don't know how to implement function that will return id of item i selected in combo...
i know that it have to be something using .live(), something like
$(".foo").live("change", function() {
do something;
});
... but i don't know how to implement it here.
tnx in adv!