I have a bunch on elements with the same name that i am trying to remove at the same time with an onchange function.

Here is the javascript:

<script type="text/javascript">
    function removeoldAccounts() {
        var e = document.getElementById("account_table")
        var accounts = document.getElementsByName("extraaccounts");
        e.removeChildren(accounts);
    }
</script>

(Not even sure if removeChildren is a real command) And my element that im giving the onchange action to:

<select id="piname" name="pi_name" onChange="removeoldAccounts" />

And the elements im trying to have removed:

<tbody id="account_table">
    <tr>
        <td>Account Number<span>*</span>:</td>

        <td id="accounts">
            <select id="accountnum" name="account_number">
                <option value="5636745946254">5636745946254</option>
                <option value="23164847322">23164847322</option>
            </select> 
        </td>

        <td> 
            <input type="hidden" id="theValue3" value="81">
            <input type="button" value="Add More" onclick="addaccount()">
        </td>
    </tr>

    <tr id="80" name="extraaccount">
        <td>
            <select id="80" name="account_number">
                <option value="5636745946254">5636745946254</option>
                <option value="23164847322">23164847322</option>
            </select>
        </td>

        <td>
            <input type="text" size="20" name="account_comment80">
        </td>

        <td>
            <input type="button" onclick="removeaccount(80)" value="remove">
        </td>
    </tr>

    <tr id="81" name="extraaccount">
        <td>
            <select id="81" name="account_number">
                <option value="5636745946254">5636745946254</option>
                <option value="23164847322">23164847322</option>
            </select>
        </td>
        <td>
            <input type="text" size="20" name="account_comment81">
        </td>

        <td>
            <input type="button" onclick="removeaccount(81)" value="remove">
        </td>
    </tr>
</tbody>

Sorry if the html is a bit sloppy but basically, a tbody with a bunch of tds that have the same name ( extraaccount)

link|improve this question

Sorry... What are you trying to do? Also, on editing your JavaScript I noticed there was a missing semicolon on var e = document.getElementById("account_table"). Try that, and look in your browser's error console for errors too. – JamWaffles Jul 22 '11 at 19:33
feedback

3 Answers

up vote 1 down vote accepted
<script type="text/javascript">
function removeoldAccounts() {
    var accounts = document.getElementsByName("extraaccounts");
    var account;
    var parent;
    for (account in accounts) {
       parent = account.parentNode;
       parent.removeChild(account);
    }
}
</script>

and...

<select id="piname" name="pi_name" onChange="removeoldAccounts();" /> 
link|improve this answer
Hmm that looked like it would work but it didnt..no errors.. are you sure theres no simple mistake like forgetting an s at the end or something (I dont know javascript well enough to catch these small errors) – Jonah Katz Jul 22 '11 at 19:40
Change the onChange code also. I edited to show that, too. – Jonathan M Jul 22 '11 at 19:43
Yeah i realized that part was wrong so now i get the following error: "parentNode is undefined" (parentNode.removeChild..) – Jonah Katz Jul 22 '11 at 20:01
feedback

Something like this:

if ( e.hasChildNodes() )
{
    for(var i=0; i < e.childNodes.length; i++)
    {
        if(e.childNodes[i].nodeName == "extraaccounts") {
            e.removeChild(e.childNodes[i]);
        }
    } 
}
link|improve this answer
feedback

$('[name="extraaccounts"]').remove();

or if you want to change smthing before deleting then

$('[name="extraaccounts"]').each(function(index,value){
//do smthing
$(value).remove
});
link|improve this answer
@Jonah: Are you using jquery or regular javascript? – Jonathan M Jul 22 '11 at 19:39
Regular javascript.. cant use jquery.. this didnt work.. :/ – Jonah Katz Jul 22 '11 at 19:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.