Comment remover

by Yashwanth M

HTML

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

CSS

textarea{
    width:300px;
    height:200px;
}

JavaScript

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