jQuery(document).ready(function($) { $('#add_new_co_author').click(function() { var coAuthorName = $('#new_co_author_name').val(); if (coAuthorName === '') { alert('Kérem adjon meg egy nevet!'); return; } $.ajax({ url: ajaxurl, type: 'POST', data: { action: 'add_co_author', name: coAuthorName }, success: function(response) { if (response.success) { alert('Új közreműködő hozzáadva: ' + coAuthorName); location.reload(); } else { alert(response.data.message); } } }); }); });