how can i get the value in the WYMeditor plugin??? +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++ code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>WYMeditor</title> <link rel="stylesheet" type="text/css" media="screen" href="wymeditor/ skins/default/screen.css" /> <script type="text/javascript" src="jquery/jquery.js"></script> <script type="text/javascript" src="wymeditor/ jquery.wymeditor.pack.js"></script> <script type="text/javascript">
jQuery(function() { jQuery(".wymeditor").wymeditor(); }); </script> </head> <body> <form method="post" action=""> <textarea class="wymeditor"></textarea> <input type="submit" class="wymupdate" /> </form> </body> </html> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++ eventhough i put a "name" attribute in the textarea and get the value of the textarea in PHP via $_POST['<name>'], i don't get the value typed in the textarea. please help................