これはほとんどの人にとって簡単なことだと思いますが、私はこの概念を学ぶのに苦労しています. 少しだけ助けが必要です。何が起こっているのかを説明するのに十分なコメントをしました。ありがとう!
//tabNavItem is an anchor link
$(tabNavItem).on("click", function(e){
    var currSlide = $(this).attr("rel");
    console.log(currSlide); // right here the value is equal to the rel of the link i click. this is correct!                   
    slideAnimation(); // i tried slideAnimation.call(currSlide) but got nothing and i tried slideAnimation(currSlide) and got 1 every time
    e.preventDefault();
});
function slideAnimation(){
    allTabs.hide();
    $(".active").removeClass("active");
    $("#" + currSlide).show();                          
    $("." + tabNavClass + " a[rel=" + currSlide + "]").addClass('active');          
    console.log(currSlide); //right now this equals 1, the rel of the first item.
};