Jump to content

Append as fourth child?


unemployment

Recommended Posts

You need to call the DOM method insertBefore on the parent element, passing in the new node and the target node to insert before:

 

<script type="text/javascript">
window.onload = function() {
    // Create the new node
    var li = document.createElement('li');
    li.appendChild(document.createTextNode('New Child 4'));

    // Insert before the 4th (index 3) child
    var ul = document.getElementById('test');
    ul.insertBefore(li, ul.children[3]);
}
</script>

<ul id="test">
    <li>Child 1</li>
    <li>Child 2</li>
    <li>Child 3</li>
    <li>Child 4</li>
    <li>Child 5</li>
</ul>

 

 

You need to call the DOM method insertBefore on the parent element, passing in the new node and the target node to insert before:

 

<script type="text/javascript">
window.onload = function() {
    // Create the new node
    var li = document.createElement('li');
    li.appendChild(document.createTextNode('New Child 4'));

    // Insert before the 4th (index 3) child
    var ul = document.getElementById('test');
    ul.insertBefore(li, ul.children[3]);
}
</script>

<ul id="test">
    <li>Child 1</li>
    <li>Child 2</li>
    <li>Child 3</li>
    <li>Child 4</li>
    <li>Child 5</li>
</ul>

 

Thank you. That worked

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.