how to remove a rel=”nofollow” using call to action plugin

i hope its help you

i’m doing use of jquery

$("a").each(function(){
    if($(this).attr("rel")){
        $(this).removeAttr("rel");
    }
});

it will remove all nofollow link from all anchor tag even plugin link too.