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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T16:36:44+00:00 2026-05-29T16:36:44+00:00

I’m trying to apply CSS styles to page elements that are dynamically inserted in

  • 0

I’m trying to apply CSS styles to page elements that are dynamically inserted in a page, but my approach isn’t working. Using code similar to what I’ve inserted below, I notice that when I inspect element in chrome, the and tags surround the table content, but the and tags both precede the table row/table data content – e.g., the inspect element view looks like…

<span>
     <table></table>
       <tr>
           <td></td>
           <td></td>
       </tr>
<span>

Any idea why the closing table tag isn’t appearing after the table row/data tags? Also, why isn’t the background-color style being applied?

Thanks for any suggestions.

Simplified code snippets:

<script>


     function insertComments(topic_id){
            $.getJSON("getComments.py", {topic_id:topic_id, user_id:user_id}, function(data){
                 $('#tcomment_'+ topic_id).empty();
                 $('#tcomment_'+ topic_id).html('<table>');
                 for (i in data){
                   var commenter_profile_picture = data[i]["profile_picture"];
                   var commenter_name = data[i]["commenter_name"];
                   var commenter_person_id = data[i]["commenter_person_id"];
                   var comment = data[i]["comment"];
                   $('#tcomment_'+ topic_id).append('<tr><td><img src="'+commenter_profile_picture+'" height="20" width="20"></td><td>&nbsp;<a href="person.html?pID='+commenter_person_id+'">'+ commenter_name+'</a> - <span class="comment">'+comment+'</span></td></tr>');
                 }
                 $('#tcomment_'+ topic_id).append('</table>');
            });
     }

     function insertCommentContainer(topic_id){
           $("#comments").append('<span id="tcomment_'+topic_id+'" style="background-color:lightcyan;"></span>');
     }

    var topic_id = 124
    var user_id = 3

    insertCommentContainer(topic_id);
    insertComments(topic_id);

</script>

<html>
    <body>
        <div id="comments">
        </div>
    </body>
</html>
  • 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-29T16:36:46+00:00Added an answer on May 29, 2026 at 4:36 pm
    $('#tcomment_'+ topic_id).html('<table>');
    

    Completely replaces the HTML of the referenced element with a complete <table> element. It generated the closing </table> for you. Then

    $('#tcomment_'+ topic_id).append('<tr><td><img src="...
    

    appended its argument AFTER the last element in the DOM tree fragment already in the referenced element. This is why your table row appeared after the table.

    You should build the HTML in a variable first, and then use $(...).html( ) to set the HTML all at once.

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

Sidebar

Related Questions

That's pretty much it. I'm using Nokogiri to scrape a web page what has
Basically, what I'm trying to create is a page of div tags, each has
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to create an if statement in PHP that prevents a single post
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
I'm making a simple page using Google Maps API 3. My first. One marker
I am trying to understand how to use SyndicationItem to display feed which is
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i

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.