Hi there, quick question on adding some instructional text to the autocomplete field when composing a message (single/messages/compose.php).. adding in the initial value into the field
and adding the jquery
// compose message input field
jQuery('#send-to-input').click(function() {
if (jQuery(this).val() == 'type name(s) here') {
jQuery(this).val('')
}
})
works fine, however when you add someone to the recipient field the next input field that appears does not have the instructional text….
Any thoughts or suggestions would be greatly appreciated