jQuery(document).ready(function ($) { $('#update-dkim-record-button').on('click', function (e) { e.preventDefault(); // const postId = $('#post_ID').val(); const postId = rlMailWarmerDkim.post_id; const selector = $('#dkim_selector').val(); const action = $('#dkim_action').val(); const value = $('#dkim_value').val(); const ttl = $('#dkim_ttl').val(); $('#dkim-update-result').html('
Updating DKIM record...
'); $.ajax({ url: rlMailWarmerDkim.ajax_url, method: 'POST', data: { action: 'rl_mailwarmer_update_dkim_record', post_id: postId, selector: selector, action_type: action, value: value, ttl: ttl, security: rlMailWarmerDkim.nonce, }, success: function (response) { if (response.success) { $('#dkim-update-result').html('' + response.data + '
'); } else { $('#dkim-update-result').html('Error: ' + response.data + '
'); } }, error: function (xhr, status, error) { $('#dkim-update-result').html('AJAX Error: ' + error + '
'); }, }); }); });