Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following dojo codes to create a surface graphics element under a div:

....
<script type=text/javascript>
....
function drawRec(){
var node = dojo.byId("surface");
//   remove all the children graphics
var surface = dojox.gfx.createSurface(node, 600, 600);

surface.createLine({
  x1 : 0,
  y1 : 0,
  x2 : 600,
  y2 : 600
  }).setStroke("black");
}
....
</script>
....
<body>
<div id="surface"></div>
....

drawRec() will draw a rectangle graphics first time. If I call this function again in an anchor href like this:

<a href="javascript:drawRec();">...</a>

it will draw another graphics again. What I need to clean all the graphics under the div and then create again. How can I add some dojo codes to do that?

share|improve this question

6 Answers

up vote 76 down vote accepted
while (node.hasChildNodes()) {
    node.removeChild(node.lastChild);
}
share|improve this answer
4  
Just to be pedantic --- removing DOM nodes without corresponding JS objects will lead to memory leaks. – Eugene Lazutkin Feb 10 '11 at 1:28
1  
@Eugene: Could you say more about that? – Tom Anderson Aug 28 '11 at 15:39
2  
@Tom: dojox.gfx creates JavaScript objects to communicate with the underlying graphics system, which may have DOM nodes (SVG, VML) or not (Silverlight, Flash, Canvas). Removing DOM nodes from DOM does not remove those JavaScript objects, and it does not remove DOM nodes either because JavaScript objects still have references to those DOM nodes. The correct way to handle this situation is described in my answer for this question. – Eugene Lazutkin Aug 29 '11 at 5:38
@Eugene: Thanks, that makes everything quite clear. – Tom Anderson Aug 30 '11 at 13:14
@Eugene: With correctly-designed APIs like Canvas, removing DOM nodes will free associated objects once there are no reachable references remaining. For example, once you discard an HTMLCanvasElement, any unreachable CanvasRenderingContext2D associated with it will also be freed. Canvas doesn't even give you a way to disassociate a context from a canvas. Perhaps Silverlight or Flash still have this problem, but everyone else solved it long ago. – Glenn Maynard Aug 7 '12 at 16:47
show 1 more comment

dojo.empty( id or DOM node );

safely removes all children of the node - http://api.dojotoolkit.org/jsdoc/1.3.2/dojo.empty

share|improve this answer

First of all you need to create a surface once and keep it somewhere handy.

You can clear everything on the surface in one go (all existing shape objects will be invalidated, don't use them after that):

surface.clear()
share|improve this answer
while(node.firstChild) {
    node.removeChild(node.firstChild);
}
share|improve this answer
   
This is the way jQuery 1.8.3 works, I believe. :) – BMiner Jan 2 at 19:12
node.innerHTML = "";

Non-standard, but fast and well supported.

share|improve this answer
1  
Not supported in IE. Check: theogray.com/blog/2009/06/… – Rajat Mar 1 '10 at 17:35
Seems to be standard in HTML 5. The above blog entry was user error. developer.mozilla.org/en-US/docs/DOM/element.innerHTML – svachalek Dec 5 '12 at 23:49

From the dojo API documentation:

dojo.html._emptyNode(node);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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