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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:37:39+00:00 2026-05-18T02:37:39+00:00

Using javascript, I’m creating some html content–some nested divs that are styled via a

  • 0

Using javascript, I’m creating some html content–some nested divs that are styled via a style sheet.

After calling $(container).html(dhtmlString) I the attempt to do some calculation for layout purposes. However the values I am getting back from jQuery do not match the expected values when running in Safari and Chrome.

In code:

var someHtml = ...;
$(".Container").html(someHtml);

var containerWidth = $(".Container").width(); // properly reports 800
var nestedDivWidth = $(".NestedDiv").width(); // incorrectly reports 800

I’m expecting NestedDiv to be around 450px (thats what it is in the style sheet). On FF and IE, this works fine, but in Safari and Chrome it doesn’t.

I suspect there is a timing issue with how the DOM is updating in safari/chrome.

When the content is actually rendered to the browser, the developer element inspector does show the proper width.

I’m using jquery 1.4.2 (i’ve already tried 1.4.3 as well), with no luck.

  • 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-18T02:37:40+00:00Added an answer on May 18, 2026 at 2:37 am

    If you run into this kind of thing, it’s probably worth giving the browser a moment to process the HTML change:

    var someHtml = ...;
    $(".Container").html(someHtml);
    
    setTimeout(function() {
        var containerWidth = $(".Container").width(); // properly reports 800
        var nestedDivWidth = $(".NestedDiv").width(); // incorrectly reports 800
    }, 0);
    

    That basically does a thread yield to the browser’s rendering engine. More specifically, it schedules a timer to be called back as soon as possible (most browsers won’t call back faster than 10ms, but that’s up to them), which gives the rendering thread (if there is one, some browsers use one thread for everything, in which case you really need the above) a chance to catch up. Since the function closes over any data in the enclosing scope, it’s pretty painless from a coding perspective to carry on your logic within the function rather than after it. (Note that any statements after the setTimeout will happen before the code in the function you gave to setTimeout; that’s the whole point of moving the logic into the function.)

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

Sidebar

Related Questions

Using JavaScript, how do I create an HTML table that can "accept" numeric matrix
Im using javascript to include some content served up from a php file on
Using javascript, how do I add some data to the query string? Basically I
Using javascript, how to open a text-file or html-file from a web-page and load
Using Javascript, I want to take the content of a string and wrap every
I using JavaScript JSON library to parse JSON encoded array, received via POST. Here
using javascript validation and some jquery to show variable error messages in the DOM,
Using Javascript I want to have a JSON or array that will store id
Using JavaScript what’s the simplest way to set a headers id from it’s content
Using JavaScript how do I create a subclass that inherits values from the parent

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.