views:

206

answers:

1

Hi All,

I want to removw a node from a page for that i am using the below mentioned function

document.getElementById(id).removeNode(true);

.This is working fine in IE but not in Chrome. Can anyone tell me how can i do that

Thanks

+1  A: 

You can use removeChild, it works in most browsers.

Josef