Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a jquery function as follows :

$(document).on("click",".ball_link", function fetchLevels(){
     $.getJSON('fetch_level.php',{level: clicked_ball}, function(data) {
        $.each(data, function() {
        alert(data);
        });
    });
});

My fetch_level.php file looks like this :

$clicked_ball=$_GET["level"];
$sqlget="select * from level_flow where parent_level='$clicked_ball'";
$resultget=mysql_query($sqlget);

$response_array=array();
while($rowget=mysql_fetch_assoc($resultget)){
    $response_array[]=$rowget;
}

echo json_encode($response_array);

The query returns 3 rows across 5 columns (all ints). I want to be able to access each of those 15 values, but alert(data) in the js code gives this :

([object],[Object]),([object],[Object]),([object],[Object])
share|improve this question
function() { alert(data); }); data is the global XHR object. the ".each" method does not work like this – artragis Sep 23 '12 at 18:15

closed as too localized by hakre, Lusitanian, PeeHaa 埽, Jocelyn, tereško Sep 23 '12 at 23:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 2 down vote accepted

Treat as Object in jQuery, eg:

$(document).on("click",".ball_link", function fetchLevels(){
     $.getJSON('fetch_level.php',{level: clicked_ball}, function(data) {
        $.each(data, function(i, name) {
            alert(name.parent_level);
        });
    });
});

data contains all your database row names with values

share|improve this answer
Thanks a lot! That worked just fine! – soundswaste Sep 23 '12 at 20:06

Actually mysql_fetch_assoc returns an associative array, and you put that array inside another array

so in javascript you can try

alert(data[0].nameOfColumn);

You could iterate on it

$.each(data,function(i, el) {
    alert(el.nameOfColumn);
} );

in any case to see the structure of data you can use chrome or Firefox (with Firebug) and console.log(data)

share|improve this answer
Thanks a lot! That worked just fine! – soundswaste Sep 23 '12 at 20:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.