Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8285203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T11:24:30+00:00 2026-06-08T11:24:30+00:00

I want to add content to the TinyMce editor automatically at a specific place.

  • 0

I want to add content to the TinyMce editor automatically at a specific place.
For this i use the following example:

First what you should do is add a span at the end of the content you want to create.

Then once inserted, do this…

ed.selection.select(ed.dom.select(‘span#caret_pos_holder’)[0]); //select the span
ed.dom.remove(ed.dom.select(‘span#caret_pos_holder’)[0]); //remove the span

Found here:
What's the best way to set cursor/caret position?

This works fine in de Chrome but throws an error in IE

“DOM Exception: INDEX_SIZE_ERR (1)”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T11:24:33+00:00Added an answer on June 8, 2026 at 11:24 am

    Here is the function (located in one of my own custom plugins) i use

        // sets the caret position
        // ed is the editor instance
        // element is the html element located in the editor
        // start defines if the caret should get set to the start of the element (otherwise the end)
        setCursor: function (ed, element, start) {
    
            var doc = ed.getDoc();
            var edwin = ed.getWin();
            if (typeof doc.createRange != "undefined") {
                var range = ed.selection.dom.createRng();
                range.selectNodeContents(element);
                range.collapse(start);
                var win = doc.defaultView || doc.parentWindow;
                var sel = tinymce.isIE ? doc.selection : edwin.getSelection();
                sel.removeAllRanges();
                sel.addRange(range);
            } else if (typeof doc.body.createTextRange != "undefined") {
                var textRange = doc.body.createTextRange();
                textRange.moveToElementText(element);
                textRange.collapse(start);
                textRange.select();
            }
        },
    

    Example call:

    setCursor(ed, $(ed.getBody()).find('span#caret_pos_holder').get(0), 0);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to add a custom message once someone saves a specific content-type telling
I found this content expand/collapse jQuery plugin. I want to add fade-in effect to
I want to add large string content to a container dynamically. There are 60
I want to add social network features over a content website the website is
I have 3 tables: Book, Section and Content. I want to add many-to-many relation
I want add new Feed item on entity persist and update. I write this
I want add my custom sidebar next right column all page. Please check this
I am looking for some help autosaving tinyMCE. I want to save the content
I have a frame and I want to dynamically add content to it with
TLDR I want to add some dynamic content into an Ext-JS window / popup.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.