Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(document).ready(function($) {
- $('#target2').on('click', function() {
- if (confirm("Do you really want to delete prices?")) {
- $.ajax({
- url: my_ajax_obj.ajax_url, // WordPress AJAX URL
- type: 'POST',
- data: {
- action: 'reset_price_fields', // Custom action to be processed in PHP
- author_id: $(this).data('author-id') // Pass the author ID
- },
- success: function(response) {
- alert(response.message); // Show success message
- },
- error: function() {
- alert('Error resetting prices.'); // Show error message
- }
- });
- }
- });
- });
- add_action( 'admin_enqueue_scripts', 'reset_price_fields' );
Advertisement
Add Comment
Please, Sign In to add comment