Get all comment tag from html with jQuery
$('body').find('*').contents().filter(function(){ return this.nodeType===8; });