Single Site License


  • Perpetual license (does not expire)
  • 1 site, unlimited servers
  • No distribution (hosted use only)
  • Commercial use allowed
  • No code modifications
$12.99 Read License

Two Site License


  • Perpetual license (does not expire)
  • 2 sites, unlimited servers
  • No distribution (hosted use only)
  • Commercial use allowed
  • 6 months support
$20.99 Read License

Developer License


  • Perpetual license (does not expire)
  • Unlimited projects
  • Can distribute code and binary products
  • Commercial use allowed
  • 6 months support
$39.99 Read License

14 Day money-back guarantee

Full refund within 14 days of purchase date.

You need to log-in or create an account
  • Create an account
  • Log-in

Please use your real name.

Activation link will be sent to this address.

Minimum 8 characters

Enter your password again

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

Inline TinyMCE

Inline TinyMCE
Developed by Arnold Simha, Released Apr 25, 2012

The powerful TinyMCE wrapper allows you convert every element to TinyMCE editable content. See the changes the moment you type

JavaScript

Tags: editor , inline editor , tinymce

Questions & Comments

You must be logged-in to vote. Log-in to your account or register now.

Or enter your name and Email
  • Jason Raymond 2 months ago
    Seems there is an issue on mobile devices. Can you confirm if this can be fixed? No editor functions show up
  • Arnold Simha Developer 1 year ago
    It's very simple. Set the save button to do what ever you want:
    saveButton: {
    title: "Save Content",
    image: 'images/ok_small.png',
    onclick: function (ed) {
    var editorContent= ed.getContent();
    //save the content in database
    }

    }
    • Mick89 License holderSingle Site License 1 year ago
      Hello,

      Thank you for your answer.

      In fact, I thought of being able to make like this:

      saveButton: {
      title: "Save Content",
      image: 'images/ok_small.png',
      onclick: function (ed) {
      var content = $('#editable').html();
      $.ajax({
      url: 'saveToDb.php',
      type: 'POST',
      data: {
      content: content
      }
      });
      }
      }

      saveToDb.php would have all the codes necessary to record the data in my database.
      It would be also easier for me to thus protect script...

      Do you think that it is possible?

      Thanks again!

      Mick
    • Arnold Simha Developer 1 year ago
      Of course. You need to remove the editor and then save the data:

      saveButton: {
      title: "Save Content",
      image: 'images/ok_small.png',
      onclick: function (ed) {
      //remove editor
      $(this).data("inlineTinyMCE").removeEditor(ed);
      //get the data from html
      var content = $('#editable').html();
      $.ajax({
      url: 'saveToDb.php',
      type: 'POST',
      data: {
      content: content
      }
      });
      }
      }
    • Mick89 License holderSingle Site License 1 year ago
      Thanks!

      I did not receive the version not compressed with the purchase ! Is it normal?

      Mick
    • Arnold Simha Developer 1 year ago
      Please view pricing option. You bought a "Single Site License"
    • Mick89 License holderSingle Site License 1 year ago
      Ok, I had not understood the principle of the licenses.

      It is also necessary to pay for the updates (bugs) after 6 months!

      Mick
    • Arnold Simha Developer 1 year ago
      The component has been tested on many environments without any errors.
    • Mick89 License holderSingle Site License 1 year ago
      Hello,

      1) I have an error message with IE8:

      Message: No valid argument.
      Line: 1
      Character: 46713
      Code: 0
      URI: tiny_mce/tiny_mce.js

      2) I would like to also use my version of TinyMCE 3.5.x.

      But, impossible to obtain the bars of navigation (icons) with this version.

      Is it necessary to modify something?

      Is it necessary to use TinyMCE 3.5.0.1 or TinyMCE 3.5.0.1 jQuery package?

      Thank!

      Mick
    • Mick89 License holderSingle Site License 1 year ago
      I found for 2.

      I added the folder default_inline in the folder skins.

      But, I always have the error message in IE8.
      With this version the message is:

      Message: No valid argument.
      Line: 1
      Character: 61584
      Code: 0
      URI: tiny_mce/tiny_mce.js

      An idea?

      Thanks again!

      Mick
    • Arnold Simha Developer 1 year ago
      The issue was fixed. Try to download again.
      Good luck and thank you for buying
  • Mick89 License holderSingle Site License 1 year ago
    Hello,

    Your script is interesting!

    But, is there an example to record the data in a database?

    Is it necessary to use a URL in saveButton (url:myurl.php) ?

    Thank you for your answer.

    Mick