tinyMCE.init({ theme : "simple", mode : "exact", elements : "comment-content" }); function tinyMCEPost(id, replyMode){ var p = document.createElement('input'); p.setAttribute('type', 'submit'); p.setAttribute('name', 'comment-post'); if(replyMode) p.setAttribute('value', 'reply'); else p.setAttribute('value', 'post'); p.setAttribute('onclick', 'if(document.getElementById(\'comment-name\').value){return true;}else{alert(\'Name is required\');return false;}'); document.getElementById(id).appendChild(p); }