Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter olli395

    (@olli395)

    also, it seems not to be working with opera…

    Likewise for me, any solution to this?

    Thread Starter olli395

    (@olli395)

    @ktvstudios:
    I guess, the only solution is another plugin…
    (this is what I did…)

    The problem is with the function getNextQuestion1 whose variables have a wrong initialization it only works in Firefox but not in Chrome and IE. So change function variable from getNextQuestion1(priority=0,user_id=0) and let the function look like below; Please reply if it works.

    function getNextQuestion1(priority,user_id){
    priority || (priority = 0);
    user_id || (user_id = 0);
    jQuery(‘#wsp_container_1 #question_container’).hide();
    jQuery(‘#wsp_container_1 #wsp_wait’).show();

    var data = {
    ‘action’: ‘getNextQuestion’,
    ‘survey_id’: 1,
    ‘priority’ : priority,
    ‘user_id’ : user_id
    };

    jQuery.post(wsp_ajax_url, data, function(response) {
    jQuery(‘#wsp_container_1 #wsp_wait’).hide();
    jQuery(‘#wsp_container_1 #question_container’).html(response);
    jQuery(‘#wsp_container_1 #question_container’).show();
    });
    }

    Clearly, this is now an untended plug-ins. I’ll try something else.

    KTheB, you don’t have to, it’s really working great for me

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘WP Survey Plus not working with Google Chrome’ is closed to new replies.