aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes DOM - remove text question Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "DOM - remove text question" Watch "DOM - remove text question" New topic
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
    
  13

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
    
  13

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
    
    6
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
    
    6
Basic object detection


Eric
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: DOM - remove text question
 
Similar Threads
Image Construction
HTML RadioButton Reference
Table in Javascript & HTML
I need help to remove HTML tags
jQuery - positioning and hiding