Skip to content

Instantly share code, notes, and snippets.

@yuriinalivaiko
Last active May 12, 2025 12:16
Show Gist options
  • Save yuriinalivaiko/220febbfb39509960586a6b75d034ad1 to your computer and use it in GitHub Desktop.
Save yuriinalivaiko/220febbfb39509960586a6b75d034ad1 to your computer and use it in GitHub Desktop.
This code disables sending a private message when the user presses the ENTER key.
// Don't send private messages on the "Enter" keypress.
jQuery(document).ready(function() {
jQuery( document.body ).off( 'keypress', 'textarea.um_message_text' );
});
@yuriinalivaiko
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment