nibbo Posted February 25, 2008 Share Posted February 25, 2008 Hi all; I have a form with a textarea in it and am trying to use a rich text editor. I have tried with both openwysiwyg and whizzywig and both appear to work in that I can edit the text. When I submit the for however the textarea is blank. php code is: echo "</td><td><textarea name='NewDescription' id='NewDescription' cols='40' rows='15' style='width:100%; height:50px'></textarea>\n"; echo "<script language='JavaScript' type='text/javascript'>generate_wysiwyg('NewDescription');</script></td></tr>\n"; If I try to display the values when the form is submitted document.getElementById('NewDescription').value / innerText & innerHTML are all null. Any ideas? Thanks Quote Link to comment Share on other sites More sharing options...
jeremyphphaven Posted February 25, 2008 Share Posted February 25, 2008 I've never used either editor, but try taking out the first echo... the second one, should have javascript create the textarea for you? // echo "</td><td><textarea name='NewDescription' id='NewDescription' cols='40' rows='15' style='width:100%; height:50px'></textarea>\n"; echo "</td><td><script language='JavaScript' type='text/javascript'>generate_wysiwyg('NewDescription');</script></td></tr>\n"; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.