| Author |
DOM - remove text question
|
Rob Hunter
Ranch Hand
Joined: Apr 09, 2002
Posts: 788
|
|
I have a div tag with an id of mainBlock. How can I remove everything inside the DIV tag using DOM and javascript? Thanks. Rob
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56165
|
|
|
document.getElementById('mainBlock').innerHTML = "";
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56165
|
|
or.... Iterate through all the children removing each from the parent. The former is easier and liklely quicker.
|
 |
Rob Hunter
Ranch Hand
Joined: Apr 09, 2002
Posts: 788
|
|
Hi Bear, Thanks that worked fine. I thought for sure I had tried that though earlier and then (after thinking it failed) started trying other things. Anyways thanks again. Rob
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
DOM way Eric
|
 |
Rob Hunter
Ranch Hand
Joined: Apr 09, 2002
Posts: 788
|
|
That div tag I was talking about. Sometimes it may or may not be on the page what is the easiest/best way to determine it's on the page or not? Thanks. Rob
|
 |
Rob Hunter
Ranch Hand
Joined: Apr 09, 2002
Posts: 788
|
|
Sorry guys. I had a typo in the if statement. Rob
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
Basic object detection Eric
|
 |
 |
|
|
subject: DOM - remove text question
|
|
|