search for: submit_on_enter

Displaying 1 result from an estimated 1 matches for "submit_on_enter".

2007 May 01
3
How to get TinyMCE editor value( text content)
...w to include the submit button . And also I wrote a javascript for getting the textarea content when the user press the enter button. Its also not working. Why it is. tinyMCE.init({ mode : "textareas", }); <textarea name="msg" id=''msg'' onKeyPress="submit_on_enter(event)"> TinyMCE.</textarea> function submit_on_enter(e) { var key; if(window.event) key = window.event.keyCode; else key = e.which if(key == 13){ sendmsg(); $(''msg'').value=''''; } return(false); } Above...