문제

I am trying to use jquery version of tinymce 4.

<script src="http://tinymce.cachefly.net/4.0/jquery.tinymce.min.js"></script>
<script>
$(function(){
    $("textarea").tinymce();
});
</script>
<textarea>Your content here.</textarea>

But when I run the page, I get the error message tinymce is not defined. How can I fix it? Thank you.

도움이 되었습니까?

해결책

You should add these files:

<script src="/js/jquery-1.10.2.js" type="text/javascript"></script>
<script src="/js/tinymce/tinymce.min.js" type="text/javascript"></script>
<script src="/js/tinymce/jquery.tinymce.min.js" type="text/javascript"></script>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top