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

  • Home
  • SEARCH
  • 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 8350319
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:16:44+00:00 2026-06-09T08:16:44+00:00

I am working with onkeydown events in order to get the written value (in

  • 0

I am working with onkeydown events in order to get the written value (in a textarea), process it on a PHP file (passing it by Ajax post) and showing the result in an external div…
The problem is that each time I press the key, I can’t continue writing till Ajax does its task. How can I make it possible to keep writing even if the text hasn’t been processed yet?

—EDIT—

function fromWCtoHTML(source){
 var act = new Date();
 http[act] = createRequestObject();
 http[act].open('post', '/php/fromWCtoHTML.php',false);
 http[act].setRequestHeader('Content-Type','application/x-www-form-urlencoded',false);
 http[act].send("source=" + source);
 document.getElementById('AJAXWCtoHTML').innerHTML=http[act].responseText;
}
  • 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-09T08:16:45+00:00Added an answer on June 9, 2026 at 8:16 am

    http[act].open('post', '/php/fromWCtoHTML.php',false);

    The 3rd parameter[false] is causing your request to be synchronous.
    Change it to true or do not include it.

    EDIT Response for the comment stating that http[act].responseText is blank.

    Add an onreadystate event handler. Try the following code

    function fromWCtoHTML(source){
     var act = new Date();
     http[act] = createRequestObject();
     http[act].open('post', '/php/fromWCtoHTML.php');
     http[act].setRequestHeader('Content-Type','application/x-www-form-urlencoded',false);
     http[act].send("source=" + source);
      http[act].onreadystatechange=function(){
     if (http[act].readyState==4 && xmlhttp.status==200)
        {
        document.getElementById('AJAXWCtoHTML').innerHTML=http[act].responseText;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Working on a website http://www.ArenaText.com written in asp.net with Microsoft AJAX control toolkit. iPad
Working with H2 I get this error when I try to write a row
Working with an API where I need to send a value over in an
Working sample using one Table SELECT t.* FROM ( SELECT TITLE.name, (TITLE.value-TITLE.msp) AS Lower,
I'm working with ReCaptcha, ASP.NET and Gaia Ajax . It took me some time
I got my keyboard working in a simple way: rightPressed = false; onKeyDown =
Working on a small game using an HTML5 canvas, and javascript. And it's working
Working with an undisclosed API, I found a function that can set the number
Working with Reporting Services 2008 r2. So here's my issue: We have 5 reports
Working on the problems on Project Euler to try to learn Clojure. I'm on

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.