javascript - Jquery Text editor issue -


the following code of page want use jquery text editor (jqte). however, after trying nothing seems working. have included required files in same folder aspx page.the jquery reference included on masterpage.

<%@ page title="" language="c#" masterpagefile="~/masterpage.master" autoeventwireup="true" codefile="articleview.aspx.cs" inherits="articles_articleview" %>  <asp:content id="content1" contentplaceholderid="head" runat="server">     <link href="jquery-te-1.3.6.css" rel="stylesheet" type="text/css" />     <script src="jquery-te-1.3.6.min.js" type="text/javascript"></script> </asp:content>  <asp:content id="content2" contentplaceholderid="contentplaceholder1" runat="server">     <div></div>      <div>         <textarea class="jqte-test" name="textarea"></textarea>         <div name="div" class="jqte-test"></div>     </div>      <div></div>      <script>         $('.jqte-test').jqte();     </script> </asp:content> 


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -