I have checked the classes and id's to make sure they call work, and console.log everything, but my text isnt changing? Is there anything obvious that I am missing here?
$('.clicker').click(function () {
var currentId = '#' + $(this).parents('.parentClass').attr('id');
$(currentId).find(".textContainer").text('changed
text');
});