kotarok
12/4/2010 - 1:56 PM

to remove all comment nodes on IE with expression

html {
	/*to remove all comment nodes on IE*/
	behavior: expression(this.behavior || ((function(a){
		a=document.getElementsByTagName('!');
		try{for(var i=0,l=a.length;i<l;i++){a[i].parentNode.removeChild(a[i])}}catch(e){};
	})(),1));
}