sir,
i want to show editor content at literal at button click using jquery. I have editor,literal,button like below.
<cc1:Editor ID="Editor2" runat="server" />
<asp:Button ID="Button1" runat="server" Text="Preview" />
<asp:Literal ID="Literal1" runat="server"></asp:Literal>
i show like below.
Literal1.Text = Editor2.Content;
how can i do it using jquery. plz help me.