Questions tagged [jqte]

jQuery WYSIWYG HTML editor

jQuery TE is a jQuery plugin. It is a lightweight (16.6 KB) and very useful HTML editor. And it works with WYSIWYG model.

jQuery TE works with same performance on the most preferred browsers. And its source of the output is same as 90% on these browsers. Also, it compresses to source of the output automatically. jQuery TE's system runs more practical and more rapidly to other some editors.

jQuery TE usage example:

$("textarea").jqte();

Project site: http://jqueryte.com

31 questions
0
votes
0 answers

jQuery TE not working after clone it

I used the jQuery HTML Editor plugin from here. I want to create multiple HTML editors on clicking an 'add' button. Here is my code for that: $(document).ready(function () { $(".jqte-test").jqte(); }); $('.clause-form').delegate(".add-button",…
user3090790
  • 826
  • 1
  • 7
  • 14
0
votes
2 answers

Forbid script tags and event listeners in jqte jQuery text editor using htmlpurifier

I am using jqte to give users of a cms I wrote some WYSIWYG for their content. To output the content publicly I use htmlPurifier so there is no way, editors will do harm to the visitors of the site. They could however place
Max
  • 2,561
  • 1
  • 24
  • 29
0
votes
1 answer

Intercept Paste Event of JQTE

I am trying to bind an on paste event to my jquery text editor so I can paste as plain text. I have added the second line to my…
user4780686
0
votes
1 answer

Bind Paste Function to JQuery Text Editor

Can anybody tell me why I get no output from this function? $('.jqte_editor').bind('paste', function() { console.log("hi") }); I have also tried on( $('.jqte_editor').on('paste', function() { console.log("hi") }); HTML:
user4780686
0
votes
1 answer

jQuery Text Editor (jqte), using change event

I am trying to write some code for change() event using jQuery Text Editor (jqte), I have two functions which give jqte functionality to textarea's One for editors loaded with JavaScript, when clicking some elements in a page: function…
Raul Sanchez
  • 270
  • 2
  • 17
0
votes
1 answer

jQuery blur event with ID and value

I want to use the 'blur' event in the jQuery text plugin. http://jqueryte.com $ ('textarea'). jqte ({ blur: function (elem) { // ID textarea? // Content editor? } }); The function of the blur, I would like to determine the content and the ID of the…
Stephan123
  • 11
  • 1
0
votes
2 answers

Ajax call not working when trying to send html markup to server

I am using jquery text editor plugin for creating a html mark up. I take the markup created by the text editor in a js variable and post that variable to server using ajax call. Mark up in cshtml:
Saurabh Palatkar
  • 3,242
  • 9
  • 48
  • 107
0
votes
1 answer

jqte duplicate the editor when open jquery popup

I am trying to set textarea to be richtexteditor using jqte, the control works properly when I used it in popup dialog by setting it after open the popup like function EditItemPopup(item) { // Set Controls //debugger; …
0
votes
0 answers

jqte: binding event to associated input element

I'm wrapping jqte inside an object, com.comapany.app.domElement.RtfEditor = function(inputElementId) { // I've also tried .bind('click', function() {} $('#'+inputElementId).bind('click', null, function() { alert('binding under…
masT
  • 804
  • 4
  • 14
  • 29
0
votes
0 answers

Jquery jqte and document ready

I've tried many different places for the script with $('#editable').jqte(); inside. Sometimes the editor shows up, sometime it does not, it seems non-deterministic. It's like my document is not ready when I call the jqte() function.
user2346536
  • 1,464
  • 2
  • 21
  • 43
0
votes
1 answer

HTML editor embedded in admin page

I'm working on a simple webpage for a company and the company wants to be able to edit the content themselves from time to time. However they have no programing knowledge and therefore I want to use an embedded HTML editor, I have chosen jQuery…
Christian.H
  • 126
  • 8
0
votes
1 answer

jqte text editor is changing html tags

I am using jqte as a text editor with my CodeIgniter application however when I save the content it's converting the tags which I don't want it to do. For example, I would like it like this:

Lorum ipsum
dolor simit

but instead it is…
green_arrow
  • 1,257
  • 7
  • 21
  • 37
0
votes
2 answers

jquery mouseenter is not working on img

I am trying to drag an image to jquery Text editor (jqte) and then resize it in the editor. As the resizing function works only in firefox. so i think to provide W and H textbox on mouseenter to change the size. but the mouseenter is not working on…
Spirals Whirls
  • 543
  • 1
  • 8
  • 27
0
votes
0 answers

JQTE Jquery text editor issue

I want to run the jQuery Text Editor on the following aspx page. but I tried for hours with any success. Getting the error Uncaught TypeError: Object # has no method 'jqte'. I have included all the required libraries. The MasterPage has the…
Spirals Whirls
  • 543
  • 1
  • 8
  • 27
0
votes
0 answers

Jquery Text editor issue

The following the code of the page where I want to use Jquery Text Editor (jqte). However, after much trying nothing seems to be working. I have included the required files in the same folder as the aspx page.The Jquery reference is included on the…
Spirals Whirls
  • 543
  • 1
  • 8
  • 27