Easy Way to Remove Active Link In Blogger Comments - Today i Will Come With A New Tutorail , in This Tutorail i will Show you How to Remove Active Links in Blogger Comments.
if You Want to Remove Active Links in Blogger Comments , Copy Below Code and paste the above code </body>
Hope it Useful for You...
How to Remove Active Link In Blog Comments
<script type='text/javascript'>
//<![CDATA[
function blockLinks(parentID, children) {
var parent = document.getElementById(parentID),
content = parent.getElementsByTagName(children);
for (var i = 0; i < content.length; i++) {
if (content[i].innerHTML.indexOf('</a>') !== -1) {
content[i].innerHTML = "<mark>No live link!!!</mark> Sorry bro nggak boleh nyepam dimari!";
content[i].className = "spammer-detected";
}
}
}
blockLinks('comment-holder', 'p');
//]]>
</script>