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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:40:04+00:00 2026-06-15T14:40:04+00:00

i try to save my form with CKEditor and add autosave function mean all

  • 0

i try to save my form with CKEditor and add autosave function mean all input will autosave :

<script>
//hide preview box 
$('document').ready(function() {
    $('#preview').hide(); //Default setting
}); 

//save in db
function CKupdate(){
    for ( instance in CKEDITOR.instances )

        CKEDITOR.instances[instance].updateElement(); //fix texrarea update value

        CKEDITOR.instances[instance].on('key', function() { //auto save 
                $("#save").trigger('click');
            });

        $('#article-form').ajaxForm( { //submit form
        target: '#preview', 
            success: function() { 
                $('#preview').show('slow').delay(800).hide('slow');
            } 
        }); 
}
</script>

<form id="article-form" name="article-form" method="post" action="save.php">
    <textarea name="bodyContent" id="bodyContent"><?php echo $row['content'] ?></textarea>
    <script type="text/javascript">
    CKEDITOR.replace('bodyContent');
    </script>

    <button onClick="CKupdate()" id="save" />Save</button>
</form>

<span id="preview"></span>

My problem is :

  1. This autosave CKupdate() (refer line -> comment //auto save ) only trigger after i press Save
    button.. and not function if i not press save . Im not sure how to run this before user press save.

  2. After user press save , save function will trigger everytime user
    insert any string inside textarea and after few second my browser will hang. I think this on('key', not function well or maybe need to change to someting else.

what im trying to do actually is create textarea with CKEditor and save value into db and create function for autosave.

  • 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-15T14:40:05+00:00Added an answer on June 15, 2026 at 2:40 pm

    I am sorry to say but this looks highly unoptimized. Do you realize that after your first click every key press adds the “keypress” event again to the editor instance? Like if you press 5 keys now you have 5 clicks of the save button.

    Instead of having the entire function run again why don’t you move the save code out to another function? Like so:

    <script>
    //hide preview box 
    $('document').ready(function() {
        $('#preview').hide(); //Default setting
        for ( instance in CKEDITOR.instances ) {
    
            CKEDITOR.instances[instance].updateElement(); //fix texrarea update value
    
            CKEDITOR.instances[instance].on('key', function() { //auto save 
                    $("#save").trigger('click');
                });
    
       }
    }); 
    
    //save in db
    function CKupdate(){
        for ( instance in CKEDITOR.instances ) {
    
            CKEDITOR.instances[instance].updateElement(); //fix texrarea update value
    
    
            $('#article-form').ajaxForm( { //submit form
            target: '#preview', 
                success: function() { 
                    $('#preview').show('slow').delay(800).hide('slow');
                } 
            }); 
        }
    }
    </script>
    
    <form id="article-form" name="article-form" method="post" action="save.php">
        <textarea name="bodyContent" id="bodyContent"><?php echo $row['content'] ?></textarea>
        <script type="text/javascript">
        CKEDITOR.replace('bodyContent');
        </script>
    
        <button onClick="CKupdate()" id="save" />Save</button>
    </form>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i try save using ajaxForm : <script src=ckeditor.js></script> <script type=text/javascript src=http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js></script> <script type=text/javascript src=js/jquery.form.js></script>
I try to create a form that can save a person's form data so
I have a basic form with some input fields. I want to save the
recently I've created a simple registration form and when i try to save the
I try to save html content to the database, with ' or it auto
When I try to save images to a directory, it's not saving to my
When I try and save something to my list in SharePoint I get the
When I try to save a certain of my ActiveRecord instances, I get this
when I try to Save an updated managedobject the changes don't get persisted to
this is the problem once i try to save data into db with sql

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.