Files
torebki-fabiola.pl/wp-content/plugins/post-smtp/Postman/Postman-Diagnostic-Test/postman_diagnostics.js
2026-03-05 13:07:40 +01:00

20 lines
395 B
JavaScript

jQuery(document).ready(function() {
getDiagnosticData();
});
/**
*/
function getDiagnosticData() {
var data = {
'action' : 'postman_diagnostics',
'security' : jQuery('#security').val()
};
jQuery.post(ajaxurl, data, function(response) {
if (response.success) {
jQuery('#diagnostic-text').val(response.data.message);
}
}).fail(function(response) {
ajaxFailed(response);
});
}