skip to Main Content

Jquery – The text in ckeditor5 is not updated

Excuse me, my English is bad. There is such a code: <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <link rel="stylesheet" href="https://cdn.ckeditor.com/ckeditor5/43.1.0/ckeditor5.css" /> <body> <div id="addtext">button</div> <div id="inform"> <div class="editor"> <p>Hello from CKEditor 5!</p> </div> </div> </body> <script type="importmap"> { "imports": { "ckeditor5": "https://cdn.ckeditor.com/ckeditor5/43.1.0/ckeditor5.js", "ckeditor5/": "https://cdn.ckeditor.com/ckeditor5/43.1.0/"…

VIEW QUESTION

How to add new plugin like Autocomplete in CK classic editor 5 used in ASP .net core mvc? – Jquery

Here I integrate classic CK-Editor in View of C# file.I am trying to add new autocomplete plugin in classic editor. <div class="card-body areacls cardBox" contenteditable="true" id="@areaId" data-href="@item.Id" onclick="createEditor(@areaId)"> @Html.Raw(item.Description) </div> <script> var editors = new Map(); function createEditor(elementToReplace) { return…

VIEW QUESTION
Back To Top
Search