javascript - TinyMCE not updating textbox -
i'm trying tinymce work , i'm struggling. here complete page:
<!doctype html public "-//w3c//dtd xhtml 1.1//en" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr"> <head> <title>tinymce test</title> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script> <script type="text/javascript"> tinymce.init({ mode: "textareas" }); </script> </head> <body> <form method="post" action="show.php"> <p> <textarea name="content" cols="50" rows="15">this content editable tinymce.</textarea> <br /> <input type="submit" value="save" /> </p> </form> </body> </html>
the js file found, php file doesn't exist yet (although don't believe issue?)
however when load page in chrome or ie8 textbox looks does?
i don't know if it's related script error in chrome: object has not method 'extend'
why not getting updated textbox seen on site?
Comments
Post a Comment