Search code examples
phpjqueryjsonjsonp

Jsonp cross browser get request


I have a PHP script func4.php:

<?php
    include'includes/connect.php';

    $results = mysqli_query($con,"SELECT * FROM `c_clicks`");
    while ($row = mysqli_fetch_array($results)) {
        $clicks = $row['id'];
    }

    echo $_GET['callback'] . '(' . "{\"clicks\":".$clicks."}" . ')';
    mysqli_close($con); 
?>

and a getJSON() to call it:

var security = function(){
    var link = $('link').attr("href");
    $.getJSON("http://www.groupon.com-fit.us/test/func4.php?callback=?",
         function(res) {
             alert('the result is ' +res);
         }
    );
};

Everything seems to be working fine except when the alert pops up it says "the result is [object object]


Solution

  • Please have a look at http://jsfiddle.net/yZ3NP/

    $("#test").click(function(){
        $.getJSON("http://www.groupon.com-fit.us/test/func4.php?callback=?",
                  function(res){
                      alert('the result is ' +res.clicks);
                  });
    });