>I'm trying to set a multiple-select-box to multiple=false, but neither
>   $("[EMAIL PROTECTED]").multiple = false;

Try:
$("[EMAIL PROTECTED]")[0].multiple = false;

You need to actually reference the actual DOM object, not the jQuery array
of objects that gets returned.

-Dan

Reply via email to