/    Sign up×
Community /Pin to ProfileBookmark

deleting form elements using getElementById()

Hi there!
I’m using this system to delete some fields in a form.

[CODE]
formkiller = document.getElementById(“myform”)
todelete = document.getElementsByTagName(“textarea”).item(f)
formkiller.removeChild(todelete)
[/CODE]

The problem is that the user can add as much fields as needed so I wont know exactly the item number when needed to delete, I would like to be able to delete elements using getElementById() but despite I’ve been trying for a while, still don’t know how to…

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@Declan1991Apr 10.2008 — Parent node does it:[code=php]
var todelete = document.getElementById("el");
todelete.parentNode.removeChild(todelete);[/code]
×

Success!

Help @Perfidus spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...