[jobbank_candidate_signup]
jQuery(document).ready(function($) { $('#add_field').on('click', function() { var fieldName = $('#new_field_name').val(); var fieldType = $('#new_field_type').val(); // Send AJAX request to add a field $.ajax({ type: 'POST', url: careerFormAjax.ajaxurl, data: { action: 'add_career_form_field', field_name: fieldName, field_type: fieldType }, success: function(response) { if (response.success) { alert('Field added successfully'); location.reload(); // Reload the page to show the new field } else { alert('Error: ' + response.data.message); } } }); }); });
[jobbank_candidate_signup]