send-wp-mail/js/send-wp-mail.js
2025-01-04 09:03:08 +02:00

11 lines
445 B
JavaScript

jQuery( document ).ready( function( $ ) {
$("#swpm-user-list").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");
})
} );