Не работает. (
var data ={text: 'My_text'};
$(function (){
$("input.json").click(function (){
$.getJSON("do_it.php",data, function (data){
for(i in data)
$(i).html(data[i]);
});
});
});
do_it.php
$my_data = $_REQUEST['text'];
echo'{".div_1":11'.$my_data.'}';
В диве отображается 11, а должно 11My_text