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 8529137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:57:47+00:00 2026-06-11T08:57:47+00:00

How would I add custom classes or an ID to text paragraphs in CKEditor?

  • 0

How would I add custom classes or an ID to text paragraphs in CKEditor? I would want to load the possible classes from DB and write them to whichever list they would be in as CKE is being loaded. The ID’s would simply be made up on the spot. The classes and ID’s would be used for things like marking a piece of text as a footnote or a caption.


Just to be clear, I don’t want to change the visible style the text using the dropdown boxes, I want to add CSS classes that can be used to style the element After it has been saved -depending on where it is used.

  • 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-11T08:57:48+00:00Added an answer on June 11, 2026 at 8:57 am

    Here you go. This code will number your paragraphs with subsequent ids and it also will append a custom class to each paragraph which hasn’t been assigned yet.

    var idCounter = 0,
        pClass = 'myCustomClass',
        pClassRegexp = new RegExp( pClass, 'g' );
    
    CKEDITOR.replace( 'editor1', {
        on: {
            instanceReady: function() {
                this.dataProcessor.htmlFilter.addRules({
                    elements: {
                        p: function( element ) {
                            // If there's no class, assing the custom one:
                            if ( !element.attributes.class )
                                element.attributes.class = pClass;
    
                            // It there's some other class, append the custom one:
                            else if ( !element.attributes.class.match( pClassRegexp ) )
                                element.attributes.class += ' ' + pClass;
    
                            // Add the subsequent id:
                            if ( !element.attributes.id )
                                element.attributes.id = 'paragraph_' + ++idCounter;
                        }
                    }
                });
            }
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing custom component derived from TCustomControl class. I would like to add
I'm using Elmah with ASP.NET and wondering how I would add custom data, such
I would like to add custom attributes to a MySQL table which I can
I would like to add a custom calculation method to a managed object (which
I would like to add some custom data to an image the user generates
I would like to add a custom context menu with line separators, but can't
I would like to add a custom alert sound to my iOS app. I
I have a simple form and would like to add a custom jQuery validation
I have a .NET deployment project. I would like to add a custom uninstall
I would like to add an IsFocused property to a custom textbox that I

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.