La respuesta es formato json, eso está bien, pero puedes hacer solo peticiones POST o GET (o en el caso puede ser DELETE, PUT, etc), mira la documentación de jQuery:
Cita: The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.
Prueba agregar también el callback para el error:
Código Javascript
:
Ver original<script>
$(document).ready(function() {
$.ajax({
url: "prueba.php",
dataType: 'json',
sucess: function(resultado){
$('.address').editable({
url: 'multiples.php',
title: 'Enter city, street and building #',
value:resultado
});
},
error: function(error){
console.log(error);
}
}),
});
</script>
Saludos