Right, sorry, jQuery.map returns a jQuery object, not an array, use this instead, I tested this time :D
$('#text').get(0).value = $.map( $('select option'), function( o ){ return o.value; }).join(', '); Ariel Flesler On 21 nov, 11:22, guix69 <[EMAIL PROTECTED]> wrote: > Thanks for your reply ! > But firebug says join is not a function......what the...