Доброго всем времени суток!
JS
success: function(data_success)
{
var content = '';
$(data_success.user).each(
function()
{
alert(1);
content += '<div>'
+ '<p><b>' + $(this).attr('id_position') + ' | ' + $(this).attr('name') + '</b></p>'
+ '</div>';
});
alert(content);
$('#dialog_authorization').html(content);
$('#dialog_authorization').parent().find('.ui-dialog-buttonpane').hide();//убрать кнопку
}
PHP
$cook[] = array('id_position'=>$user['id_position'],
'name'=>$user['name']);
$cook[] = array('id_position'=>$user['id_position'],
'name'=>$user['name']);
...
$cookie = array('user'=>$cook);
//echo $result;
print json_encode(convert('cp1251', 'utf-8', $cookie));
сервер возвращает json, но alert(content)-выводит пустое окно. Почему так?