skip to Main Content

Ajax function call to php function – Jquery ajax

I have a simple php function as below defined in one of my php file add_action('wp_ajax_test','test'); add_action('wp_ajax_nopriv_test','test'); function test(){ echo "Hello"; } I am calling above "test" function using below ajax function call jQuery(document).ready(function(){ jQuery('#prev_button_id').click(function(){ jQuery.post( myAjax.ajaxurl, { action:"test", success:…

VIEW QUESTION
Back To Top
Search