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

The Archive Base Latest Questions

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

Possible Duplicate: How to do insert After() in JavaScript without using a library? Currently

  • 0

Possible Duplicate:
How to do insert After() in JavaScript without using a library?

Currently this script adds a row at the bottom of the table. How do I tell it to add it after a particular row? At the top of the table?

<script>
var i = 1;

function changeIt() {
var tr = document.createElement('tr');
var td = tr.appendChild(document.createElement('td'));
td.style.valign = 'middle';

var span = td.appendChild(document.createElement('span'));
span.style.fontWeight = 'bold';
span.appendChild(document.createTextNode('URL ' + i));

td = tr.appendChild(document.createElement('td'));
var input = td.appendChild(document.createElement('input'));
input.name = 'url' + ++i;
input.type = 'text';
input.size = '40'

document.getElementById('myTable').tBodies[0].appendChild(tr);

}
</script>

I’ve been searching Google to learn, but I keep coming across jQuery, innerhtml, and insertrow answers.

  • 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-16T01:09:07+00:00Added an answer on June 16, 2026 at 1:09 am

    You’re looking for node.insertBefore() https://developer.mozilla.org/en-US/docs/DOM/Node.insertBefore

    var i = 1;
    
    function changeIt() {
        var tr = document.createElement('tr');
        var td = tr.appendChild(document.createElement('td'));
        td.style.valign = 'middle';
    
        var span = td.appendChild(document.createElement('span'));
        span.style.fontWeight = 'bold';
        span.appendChild(document.createTextNode('URL ' + i));
    
        td = tr.appendChild(document.createElement('td'));
        var input = td.appendChild(document.createElement('input'));
        input.name = 'url' + ++i;
        input.type = 'text';
        input.size = '40'
        var node = document.getElementById('myTable').tBodies[0];
        node.insertBefore(tr, node.firstChild);
    
    }
    

    To add to a specific position you will need to know the index in the .children. Otherwise some key identifier (class name, attribute, or ID), something you can pass into a getBy or QSA.

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

Sidebar

Related Questions

Possible Duplicate: Fetch data in database table insert it if not exist else return
Is it possible to INSERT...ON DUPLICATE KEY UPDATE into a table on the current
Possible Duplicate: How to use jQuery to add a new row to a table,
Possible Duplicate: Cannot insert explicit value for identity column in table ‘table’ when IDENTITY_INSERT
Possible Duplicate: In Python, after I INSERT Into mysqldb, how do I get the
Possible Duplicate: Insert row every X rows in excel I have a large set
Possible Duplicate: How to get the insert ID in JDBC? Hi, I'm using JDBC
Possible Duplicate: It is possible to insert data in two different table in mysql
Possible Duplicate: How to insert a row between two rows in an existing excel
Possible Duplicate: How to import LARGE sql files into mysql table Using php 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.