How to Remove Active Link In Blog Comments

Easy Way to Remove Active Link In Blogger CommentsToday i Will Come With A New Tutorail , in This Tutorail i will Show you How to Remove Active Links in Blogger Comments.



How to Remove Active Link In Blog Comments

if You Want to Remove Active Links in Blogger Comments , Copy Below Code and paste the above code </body>

<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>
Hope it Useful for You... 

Post a Comment

Previous Post Next Post