Comment remover

by samu_eyes

HTML

<textarea></textarea><button>remove comments isi</button>


isi

CSS

textarea{
    width:500px;
    height:500px;
}

JavaScript

$("button").click(function(){
    $("textarea").val($("textarea").val().replace(/<!--(?!\s*(?:\[if [^\]]+]|<!|>))(?:(?!-->)(.|\n))*-->/g,""));
    
});