[Answer]-Rich Text Editor not loading when opened through django server

1👍

You are trying to load a JavaScript file from location directly on your local hard drive (/home/aswin/python/myblog/tinymace/js/tinymce/tinymce.min.js). Websites you load from a server (even a Django development server running on your local machine) are not supposed to be able to load files from user’s local hard drive, so your browser blocks this.

Please, read about managing static files through Django.

Leave a comment