RP_Rave1_theme/template-parts/contributor.js

25 lines
767 B
JavaScript
Raw Normal View History

2024-11-06 10:10:48 +00:00
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);
}
}
});
});
});