tinyMCE HELP

Feb 3, 2013
56
3
I cant type in the text box? i use it for when i create News Articles in HK
It wont let me type in the box? i try to hover over it and type and still doesn't work. I looked over the code and can't fix it?
5iPkpdm.png


CODE:
Code:
<script src="//tinymce.cachefly.net/4.0/tinymce.min.js"></script>
            <script type="text/javascript">
            tinymce.init({
                selector: "textarea",
                plugins: [
                    "advlist autolink lists link image charmap print preview anchor",
                    "searchreplace visualblocks code fullscreen",
                    "insertdatetime media table contextmenu paste"
                ],
            toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"

             });
            </script>

            <form method = "post">
            <b>Title: </b><input type = "text" name = "title" value = "<?php echo $_POST['title']?>" placeholder = "News Title"></br>
            <b>Short Desc: </b><input type = "text" name = "shortstory" value = "<?php echo $_POST['shortstory']?>" name = "" placeholder = "News Desc"></br>
            <textarea id = "editor1" type = "text" class = "tinymce" name = "longstory" cols="68" rows="10"><?php echo $_POST['longstory']?></textarea></br>
            <b>Author: </b><input type = "text" value = "<?php echo $_SESSION['user']['username']; ?>" disabled><br>
            <select name="topstory" id="topstory" style="font-size: 14px;">
 
BUMP
 

Users who are viewing this thread

Top