skip to Main Content

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

jQuery, change class text of checked checkboxes

My HTML is generated by the website and I can't change this: <div> <span class="wrapper"> <input type="checkbox" value="" id="nr1" name="X"> <label for="X"> <span class="Y"> <span class="title">Text nr 1</span> </span> </label> </span> </div> I'm trying to use jQuery to change the…

VIEW QUESTION
Back To Top
Search