Have such php array
Array
(
[Title] => Text for title
[Description] => Text for: description.
)
Then from php send back to jquery with echo json_encode($meta_back, JSON_HEX_QUOT|JSON_HEX_TAG|JSON_HEX_AMP|JSON_HEX_APOS);
In jquery with alert see this
{"Title":"Text for title ","Text for: description."}
then
$.each( [ meta_from_url ], function( title, description ) {
alert( 'title_ ' + title + ' description_ ' + description );
});
And with alert see
title_ 0 description_ {"Title":"Text for title ","Description":"Text for: description."}
What is incorrect in my code? title is 0 and whole data is in description
Object..