$.ajax({
            type: "POST",
            url: "ajax.php",
            dataType: 'json',
            data:   "callback=bumpup_contact_us_entry&id=" + id,
            success: function(data){
             $.each(data, function(interval, message) {
                alert(message['request']);
 });            
the php:
$the_return = array('request'=>'success','order_id'=>$order_id-1);
echo json_encode($the_return);
I could never get json to work for me. What am I doing wrong? The problem is isolated to this because returning html works fine.
 
     
     
    