<script type="text/javascript">
 $(document).ready(function () {
        $("a[href*='/Blog/Lists/Categorias/Category.aspx'").each(function (index) {
             $(this).removeAttr("onclick");
             $(this).attr("href","javascript:void(0);");
        });
        $("a[href*='/Blog/_layouts/15/userdisp.aspx'").each(function (index) {
             $(this).removeAttr("onclick");
             $(this).attr("href","javascript:void(0);");
        });
 });
</script>