A short tip on js suicide. Suicide? Well.. I mean have an element remove itself. I came across this a while ago: a ‘read more’ link which should set the display property of an element to ‘block’ and remove itself completely from the DOM. Plain javascript, no frameworks. Here’s what I came to:
this.parentNode.removeChild(this);
It doesn’t require an id, name or anything else. Furthermore it doesn’t even require its parent to have and id! This may be dumb, but I love it!
good! thanks for sharing
All yours. Nice blog you got there, I managed to google translate a part of it ;)
Nice tidbit. It's not dumb, just clever; thanks.
Hey Pete, thanks! :)
I spent really nice time reading yours articles. I'm glad that I went right here.