Skip to content
Advertisement

How to Create a online based HTML Source code editor like the one in W3Schools.com using jQuery? [closed]

I want to create HTML Source code editor like W3Schools

I have tried following using jQuery syntax Highlight Its Works as follow

Tried Example

It works perfect, but when I try to edit it then it is not responding to large code all time. My HTML code is more that 12000 to 15000 lines, so its not useful.

I want to create as follow like W3Schools

What I want

How can I create like above?

Please give me any idea.

Suggest any Plugin to create it.

Advertisement

Answer

I got The Answare

now its responce is great I tried more than 100000 Line of html in it & its working great

I changed the plugin from JQuery syntax Highlight to jquery-codemirror

follow The Following steps to setup the code mirror

step 1: Download the CodeMirror from Jquery-CodeMirror-Plugin

step 2: Unzip the plugin file & add that unziped folder in your solution

step 3: Add the reference of following

  1. plugin/codemirror/lib/codemirror.css
  2. plugin/codemirror/lib/codemirror.js

step 4: add <textarea> in Your html with the class codemirror-textarea as follow

HTML

JavaScript

step 5: Add the following code in your JS

Jquery

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement