"So I tried the "standard" way:

document.getElementById("emplist").length"


that *should* be

document.getElementById("emplist").options.length;


in jQuery, it would be:

$("#emplist option").size();


Reply via email to