So I am working on applying a kendo editor to one of my textboxes, and I keep getting the error in the title when I try to get Visual studio to run it. Am I doing something wrong? Does editor require <textarea> as opposed to <asp:textbox>?
Code below snipped from project
<br />
<asp:TextBox ClientIDMode="Static" ID="JobContent" runat="server" Columns="70" Rows="30" TextMode="MultiLine"></asp:TextBox> <script type="text/javascript" src="scripts/kendo.editor.js">
$(document).ready(function () {
$("#JobContent").kendoEditor();
});
</script>
Thanks in advanced