Hi,
I've uploaded the TinyMCE js files to:
/ > home > andybyers > tinymce > jscripts > tiny_mce
And I've set the JS up like this:
<script type="text/javascript" src="/home/andybyers/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript"> tinyMCE.init({ mode : "textareas" }); </script> </head> <body> <!-- OF COURSE YOU NEED TO ADAPT ACTION TO WHAT PAGE YOU WANT TO LOAD WHEN HITTING "SAVE" --> <form method="post" action="show.php"> <p> <textarea name="content" cols="50" rows="15">This is some content that will be editable with TinyMCE.</textarea> <input type="submit" value="Save" /> </p> </form>
Am I being completely stupid or does JS not operate properly on PA?