Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
37
rated 0 times [  38] [ 1]  / answers: 1 / hits: 16124  / 12 Years ago, thu, september 6, 2012, 12:00:00

I am trying to include CodeMirror Plugin but am getting this error
Uncaught ReferenceError: CodeMirror is not defined



My HTML CODE is here



http://pastie.org/4673008



Can anyone help ??



Thanks in advance..


More From » html

 Answers
13

You're loading the clike module before CodeMirror itself.



Change the order in your HTML head from this:



<script type=text/javascript src=../CodeMirror-2.33/mode/clike/clike.js></script>
<script type=text/javascript src=../CodeMirror-2.33/lib/codemirror.js></script>
<script type=text/javascript src=../CodeMirror-2.33/mode/javascript/javascript.js></script>


To this:



<script type=text/javascript src=../CodeMirror-2.33/lib/codemirror.js></script>
<script type=text/javascript src=../CodeMirror-2.33/mode/clike/clike.js></script>
<script type=text/javascript src=../CodeMirror-2.33/mode/javascript/javascript.js></script>

[#83217] Tuesday, September 4, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
aidan

Total Points: 72
Total Questions: 95
Total Answers: 121

Location: Uzbekistan
Member since Sat, Feb 27, 2021
3 Years ago
aidan questions
Mon, Oct 11, 21, 00:00, 3 Years ago
Wed, Sep 29, 21, 00:00, 3 Years ago
Sun, Sep 5, 21, 00:00, 3 Years ago
Thu, Jan 16, 20, 00:00, 4 Years ago
;