function reset_profile(selector='#profile') { $(selector).html(''); } $(function(){ $('.lady').on('click', function() { $(document).ajaxSend(function() { $("#loading-overlay").fadeIn(0); }); id = $(this).data('id'); $.ajax({ url:`modalProfile.php?id=${id}`, type:'GET', // data:{ // 'answer':$('#answer').val() // } }) .done( (data) => { reset_profile(); $("#loading-overlay").fadeOut(300); $("#profile").append( data ); }) .fail( (jqXHR, textStatus, errorThrown) => { console.log(''); }) }); $('.eventItem').on('click', function() { reset_profile(); eventId = $(this).attr('data-heaven-eventid'); $(".hideEvent").each(function(i, elem) { if( eventId == $(elem).attr('event_id')){ $(elem).clone(true).appendTo('#profile'); } }); /* $('#profile').prepend(''); $('#profile input:first').focus(); $('#dummyInput').hide(); */ //$('#profile').scrollTop(0); }); });