11 lines
433 B
JavaScript
11 lines
433 B
JavaScript
jQuery( function( $ ) {
|
|
$("#swpm-user-list").on( 'change', function() {
|
|
$recipients = $("#swpm-recipient-emails");
|
|
if ( $recipients.val() == '' ) {
|
|
$recipients.val( $(this).find("option:selected").attr("value") );
|
|
} else if ( $(this).val() != '' ) {
|
|
$recipients.val( $recipients.val() + ',' + $(this).find("option:selected").attr("value") );
|
|
}
|
|
$(this).find("option:selected").attr("disabled","disabled");
|
|
})
|
|
} ); |