How do insert html after <!-- example comment -->
in head document. For example I want to append css in head section with jquery after specific comment tag.
$('<link>', {
rel: 'stylesheet',
href: url
}).appendTo($("<!-- Related css to this page -->"));