$(document).ready(function(){
$('.add').on('click', function(event){
$(this).parent('.add');
$('.add-caption').addClass('active');
});
$('.close-panel').on('click', function(event){
event.stopPropagation();
$(this).parent('.add');
$('.add-caption').removeClass('active');
});
});