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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:06:20+00:00 2026-05-12T11:06:20+00:00

I have an HTML page that uses AJAX to retrieve messages from a server.

  • 0

I have an HTML page that uses AJAX to retrieve messages from a server. I’m appending these messages to a as they are retrieved by setting its innerHTML property.

This works fine while the amount of text is small, but as it grows it causes Firefox to use all available CPU and the messages slow down to a crawl. I can’t use a textbox, because I want some of the text to be highlighted in colour or using other HTML formatting. Is there any faster way to do this that wouldn’t cause the browser to lock up?

I’ve tried using jQuery as well, but from what I’ve read setting .innerHTML is faster than its .html() function and that seems to be the case in my own experience, too.

Edit: Perceived performance is not an issue – messages are already being written as they are returned (using Comet). The issue is that the browser starts locking up. The amount of content isn’t that huge – 400-500 lines seems to do it. There are no divs within that div. The entire thing is inside a table, but hopefully that shouldn’t matter.

  • 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-12T11:06:20+00:00Added an answer on May 12, 2026 at 11:06 am

    You specifically said that you were appending meaning that you are attaching it to the same parent. Are you doing something like:

    myElem.innerHTML += newMessage;
    

    or

    myElem.innerHTML = myElem.innerHTML + newMessage;
    

    because this is extremely inefficient (see this benchmark: http://jsben.ch/#/Nly0s). It would cause the browser to first do a very very large string concat (which is never good) but then even worse would have to re-parse insert and render everything you had previously appended. Much better than this would be to create a new div object, use innerHTML to put in the message and then call the dom method appendChild to insert the newly created div with the message. Then the browser will only have to insert and render the new message.

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

Sidebar

Related Questions

I have a dialog window that uses a URL for its contents { function(){jQuery.ajax({'success':function(html)
I have a HTML page that scrolls up and down (not a lot, but
I have a page that is generated which inserts an HTML comment near the
I have a form on an HTML page with multiple submit buttons that perform
Here's the problem: 1.) We have page here... www.blah.com/mypage.html 2.) That page requests a
This one is weird, I have a page that consists of a html table
I have a website that uses ajax jquery and facebox. Demo here : http://temp.nevergone.eu/facebox.php
I'm trying to build a Javascript listener for a small page that uses AJAX
I have a very simple test page that uses XHR requests with jQuery's $.getJSON
I am trying to display a page that uses jQuery. The AJAX functionality implemented

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.