Skip to content

Instantly share code, notes, and snippets.

@raftaar1191
Created February 15, 2023 05:01
Show Gist options
  • Save raftaar1191/622b85fa083d720a943619a3f6b4ee8c to your computer and use it in GitHub Desktop.
Save raftaar1191/622b85fa083d720a943619a3f6b4ee8c to your computer and use it in GitHub Desktop.
Do not allow the user to send the message when user client on the return button
/**
* Do not allow the user to send the message when they client on the return button
*/
function bb_wp_footer_callback() {
?>
<script type="text/javascript">
$( document ).ready(function() {
var el = document.getElementById( "message_content" );
el.addEventListener("keydown", function(event) {
if (event.key === "Enter" && ! event.shiftKey ) {
event.preventDefault();
}
});
});
</script>
<?php
}
add_action( 'wp_footer', 'bb_wp_footer_callback', 10000 );