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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T17:43:41+00:00 2026-05-16T17:43:41+00:00

How do you prevent formatted user input past a max width? (e.g., 800 pixels)

  • 0

How do you prevent formatted user input past a max width? (e.g., 800 pixels) The user input is formatted because it is entered into a WYSIWYG text editor (CK Editor).

This solution doesn’t work:

// Replicate user input in hidden div  
// Check width  
// If width > 800px, remove characters

…because you’d be removing characters from a formatted entry – e.g., from <p>Hello World</p> you’d end up with <p>Hello World</p

  • 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-05-16T17:43:42+00:00Added an answer on May 16, 2026 at 5:43 pm

    I can already find the width of the
    formatted string. The problem is in
    the actually shortening of it.

    I think given your problem it is possible to remove the last char from a formatted entry. You’d just have to recursively dig through your HTML structure till you find it. Have a look at this neat little function I’ve written:

    function findLastElement(element){
        var content = $.trim(element.html());
    
        if(content.charAt(content.length - 1) === '>'){
            var lastChild = element.children(':last');
            if(lastChild.length > 0){
              return findLastElement(lastChild);
            }
        }
    
        return element;
    }
    

    The name is slightly misleading, but this function will dig through the jQuery element you pass to it to find the element containing the last character, so I think this will solve your problem.

    PS. I’d readily accept any suggestion on how to optimize/adopt best practice with this piece of code, if any of the gurus here would kindly drop one in the comments.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to prevent certain keys from being entered into an input box, but
How would i prevent text from being automatically formatted when added to a RichTextBox,
I want to prevent the user's concurrent login based on the admin settings. If
How to prevent sum(f)=0 from insert? INSERT INTO `t_1` (a,b,c) SELECT d,e,sum(f) GROUP by
I have a cell which is formatted as Text field with wrap text on.
I am trying to format a string of arbitrary length into a fixed width
We know that all user input must be escape by mysql_real_escape_string() function before executing
How can I send an email formatted as Name <user@example.com> to: ŠŒŽœžŸ¥µÀÁÃÄÅÆÇÉÊËÍÎÏÐÒÓÕÖØÙÜÝßàáâåæçèéëìíîïðñóôõöøùûýÿ <user@example.com> Obviously,
I have an 'ObservableCollection' that stores formatted ColumnLabels that need pasting into DataGrid. The
I'm using Rangy to perform several operations in a rich text editor (designmode =

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.