jQuery does not hit the Ajax URL on WordPress

I am trying to implement a poll plugin on wordpress. The jQuery onchange event is working very fine of the below script but doesn’t call or display the ajax hit on network .

plugin index page
PHP :

Read More
 function my_scripts_main() {
        wp_enqueue_script(
            'my_voter_script',
            plugins_url( '/js/main.js' , __FILE__ ),
            array( 'jquery' )
        );
        wp_localize_script( 'my_voter_script', 
            'myAjax',
             array( 'ajaxurl' => admin_url( 'admin-ajax.php' ),
                'action'=>'my_poll_srt')
        );        
    }

    add_action( 'wp_enqueue_scripts', 'my_scripts_main' );

Plugin Short code Page :

add_action( 'wp_ajax_nopriv_my_poll_srt', 'my_poll_srt_callbck' );
add_action( 'wp_ajax_my_poll_srt', 'my_poll_srt_callbck' );


function my_poll_srt_callbck() {
    global $wpdb;
    $poll_id=$_POST['poll_id'];
    $answer=$_POST['answer'];
    $d=mktime(11, 14, 54, 8, 12, 2014);
    $created= date("Y-m-d h:i:sa", $d);

    /******* My Logic ****************/


    echo json_encode(array('YES'=>$count_yes,
            'NO'=>$count_no));
     wp_die();
}

JS script :

jQuery(document).ready(function(){
                            jQuery("input[name=answer_srt]:radio").change(function (e) {
                                e.preventDefault();
                             //   submit();
                               //  $(this).closest("form").submit(function() {
                                   // alert('Hello');
                                    var poll_answer=$(this).val();
                                    var poll_id=jQuery(this).closest("form").find('#poll_id_srt').val();
                                    var vi=jQuery(this);



                                 jQuery.ajax({
                                    url: myAjax.ajaxurl,
                                    type: 'POST',
                                    data: {
                                        action: myAjax.action,
                                        answer:poll_answer,
                                        poll_id:poll_id
                                    },
                                   // dataType: 'html',
                                    success: function(response) {
                                        var obj = JSON.parse(response);
                                     //   console.log(obj);
                                        jQuery(vi).closest('form').find('#poll_sht').html('YES='+obj.YES+'   NO='+obj.NO);

                                    }
                              //  });

                                 });
                            }); 
                         });

In the code above there are no errors in console panel.

If I put alert() inside the script its working fine but its not hitting admin-ajax.php file. What to do now ? Where am I wrong please help me ?As you can see no ajax call but alert is working fine on change event

Related posts

1 comment

Comments are closed.