Viewing 1 replies (of 1 total)
  • Plugin Contributor Elvis Morales

    (@elvismdev)

    Solved with this trick

    <script type="text/javascript">
    		jQuery('#fire_chat_form > textarea').keydown(function(event) {
    			if (event.keyCode == 13) {
    				$('#fire_chat_form > input[type=submit]').click();
    				return false;
    			}
    		});
    	</script>
Viewing 1 replies (of 1 total)
  • The topic ‘Enter to submit message to chat’ is closed to new replies.