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) { console.log(response.data); // const timeline = response.data; // let output = 'Timeline Generated:
Error: ' + response.data + '
'); } }, error: function (xhr, status, error) { $('#generate-timeline-result').html('AJAX Error: ' + error + '
'); }, }); }); });