jQuery(document).ready(function ($) { $('#generate-timeline-button').on('click', function (e) { e.preventDefault(); const postId = $('#post_ID').val(); $('#generate-timeline-result').html('

Generating timeline...

'); $.ajax({ url: rlMailWarmerGenerateTimeline.ajax_url, method: 'POST', data: { action: 'rl_mailwarmer_generate_timeline', post_id: postId, security: rlMailWarmerGenerateTimeline.nonce, }, success: function (response) { console.log(response); if (response.success) { const timeline = response.data; let output = '

Timeline Generated:

'; $('#generate-timeline-result').html(output); } else { $('#generate-timeline-result').html('

Error: ' + response.data + '

'); } }, error: function (xhr, status, error) { $('#generate-timeline-result').html('

AJAX Error: ' + error + '

'); }, }); }); });