Imagine I run this:
$.ajax({ type: \'POST\', url: \'/ajax/watch.php\', data: {\'watch\':\'aukcia\', \'id\':aukciaID}, co
I think you are receiving this in your server respones
{message:'hello world'}
if thats the case then use
JSON.parse(data.responseText).message
to convert the json string into javascript object and access your message property.