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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:48:19+00:00 2026-05-28T07:48:19+00:00

I have a problem with my jquery parse for my table. I belive my

  • 0

I have a problem with my jquery parse for my table. I belive my parse at the moment is like this:

<table id="qandatbl">
<thead>
<tr>
    <th class="qid">Question No</th>
    <th class="question">Question</th>
    <th class="option">Option Type</th>
    <th class="noofanswers">Number of Answers</th>
    <th class="answer">Answer</th>
    <th class="noofreplies">Number of Replies</th>
    <th class="weight">Number of Marks</th>
    <th class="image">Image</th>
    <th class="video">Video</th>
    <th class="audio">Audio</th>
</tr>
</thead>
<tbody>
<tr></tr>
</tbody>
<tbody>
<tr></tr>
</tbody>
<tbody>
<tr></tr>
</tbody>
</table>

It is creating a <tbody> for each row. Instead it should display one <tbody> and display all the <tr> in the <tbody>. I want it like below:

<table id="qandatbl">
<thead>
<tr>
    <th class="qid">Question No</th>
    <th class="question">Question</th>
    <th class="option">Option Type</th>
    <th class="noofanswers">Number of Answers</th>
    <th class="answer">Answer</th>
    <th class="noofreplies">Number of Replies</th>
    <th class="weight">Number of Marks</th>
    <th class="image">Image</th>
    <th class="video">Video</th>
    <th class="audio">Audio</th>
</tr>
</thead>
<tbody>
<tr></tr>
<tr></tr>
<tr></tr>
</tbody>
</table>

How can I achieve this above?

Below is the jquery code which controls the <tbody> and <tr>.

    function insertQuestion(form) {   

        var $tbody = $("<tbody class='tbody'></tbody>");
        var $tr = $("<tr class='optionAndAnswer'></tr>");
        var $qid = $("<td class='qid'>" + qnum + "</td>");
        var $question = $("<td class='question'></td>");
        var $noofanswers = $("<td class='noofanswers'></td>");
        var $options = $("<td class='option'></td>");
        var $answer = $("<table class='answer'></table>");
        var $replies = $("<td class='noofreplies'><div class='wrapper'></div></td>");
        var $weight = $("<td class='weight'></td>");
        var $image = $("<td class='image'></td>");
        var $video = $("<td class='video'></td>");
        var $audio = $("<td class='audio'></td>");

    $('.gridTxt', context).each( function() {

     var $this = $(this);
     var $optionsText = $("<input type='text' class='gridTxtRow maxRow' readonly='readonly' /><span href='#' class='showGrid'>[Open Grid]</span>").attr('name',$this.attr('name'))
                     .attr('value',$this.val())

    $options.append($optionsText);
    $questionType = $this.val();

    });

   $('.numberAnswerTxt', context).each(function() {
        var $this = $(this);
        var $noofanswersText = '';

        if ($questionType == 'True or False' || $questionType == 'Yes or No'){

    $noofanswersText = $("<span class='naRow string' style='display: block;'>Only 1 Answer</span><input type='text' class='numberAnswerTxtRow answertxt' style='display: none;' onkeyup='numberKeyUp(this)' onkeypress='return isNumberKey(event)' onChange='getButtons()'>").attr('name', $this.attr('name')).attr('value', $this.val())

    }else{

    $noofanswersText = $("<span class='naRow string' style='display: none;'>Only 1 Answer</span><input type='text' class='numberAnswerTxtRow answertxt' style='display: block;' onkeyup='numberKeyUp(this)' onkeypress='return isNumberKey(event)' onChange='getButtons()'>").attr('name', $this.attr('name')).attr('value', $this.val())   

    }

        $noofanswers.append($noofanswersText);

        }); 


    $('#questionTextArea').each( function() {

    var $this = $(this);
    var $questionText = $("<textarea onload='resizeTxt'></textarea>").attr('name',$this.attr('name'))
                   .attr('value',$this.val())

    $question.append($questionText);



        $tbody.append($tr); 
        $tr.append($qid);
        $tr.append($question);
        $tr.append($options);
        $tr.append($noofanswers);
        $tr.append($answer);
        $tr.append($replies);
        $tr.append($weight);
        $tr.append($image);
        $tr.append($video);
        $tr.append($audio);    
        $('#qandatbl').append($tbody);

    }

Below is html which sorts out the <thead> and the table where the jquery <tbody> and <tr> will go into:

<table id="qandatbl" align="center">
<thead>
<tr>
    <th class="qid">Question No</th>
    <th class="question">Question</th>
    <th class="option">Option Type</th>
    <th class="noofanswers">Number of Answers</th>
    <th class="answer">Answer</th>
    <th class="noofreplies">Number of Replies</th>
    <th class="weight">Number of Marks</th>
    <th class="image">Image</th>
    <th class="video">Video</th>
    <th class="audio">Audio</th>
</tr>
</thead>
</table>
  • 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-28T07:48:20+00:00Added an answer on May 28, 2026 at 7:48 am

    You could just add the <tbody> to the html:

    <table id="qandatbl" align="center">
       <thead>
        <tr>
           <th class="qid">Question No</th>
           <th class="question">Question</th>
           <th class="option">Option Type</th>
           <th class="noofanswers">Number of Answers</th>
           <th class="answer">Answer</th>
           <th class="noofreplies">Number of Replies</th>
           <th class="weight">Number of Marks</th>
           <th class="image">Image</th>
           <th class="video">Video</th>
           <th class="audio">Audio</th>
        </tr>
       </thead>
       <tbody class="tbody"></tbody>
     </table>
    

    Then use this:

    function insertQuestion(form) {   
    
    var $tbody = $('#qandatbl tbody');
    
    //rest of your function
    

    http://jsfiddle.net/QGBw3/1/

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

Sidebar

Related Questions

I have a probably quite simple to solve problem. I'm trying to parse this
This seems like a simple problem but I have a coder's mental block: The
I have problem while using jquery maskedinput with asp.net textbox. I have a check
I have a problem with Jquery function getJSON, the action url does not trigger
I have some problem with Jquery Autocomplete plugin ( http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ ) I got it
I have a problem with Jquery UI modal dialogs. I have modal dialog (dialogA),
I have a problem with the jquery-ui dialog box . The problem is that
I have a problem with getting jquery to retrieve results from a WCF service.
I have a problem with the jQuery UI Slider. The issue also appears on
I have a problem with the jquery-autocomplete pluging and my django script. I want

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.