The code below will teach u how to remove child nodes using javascript
<script language=”javascript” type=”text/javascript”>function remove(parent,child){var p = document.getElementById(parent);var c = document.getElementById(child);
p.removeChild(c);
}
</script>
<input name=”balu1″ name=”ada1″ value=”To Remove” onclick=”remove(‘torque’,'show’)” type=”button” />
<div id=”torque”>
<div id=”show”><img src=”urimage.jpg” /></div>
</div>
</html>
Any doubts plz contact me

Incoming search terms:
- jquery input onexit (7)
- 3 fold page flip jquery (2)
- powershell selection list (2)
- sample download jquery random numbers countdown (2)
- fpdf error gira (1)
- javascript remove alfanumerics (1)
You will also be interested in ,
- DOM elements dynamically using our JAVASCRIPT
- How to close a child window from a parent window using javascript
- Adding and removing child nodes using javascript and DOM
- Get browser window size using javascript
- Insert text and smilies in to textarea using javascript
- Visitor counter using cookies and javascript
- Simple Javascript Clock
- Detect browser close event and alert some messages using javascript
- Replace all non alphanumeric characters using javascript
- Text auto slide information box using javascript.

