$(document).ready(function() { $('.close').on('click', function() { $(this).parent().hide(); $('#team-bio .show-content').html(''); }); $('.team.open').on('click', function() { dataID = thisDiv = $(this).attr('data-id'); $.ajax({ type: 'POST', url: 'Components/Team/Assets/AJAX/ShowMember.php', data: {id: dataID} }).done(function(html) { $('#team-bio .show-content').html(html); $('#team-bio').show(); }); }); });