¿Es posible usar ajax respone fuera de él?

Cualquier forma de usar eldata_response afuera de$.post()?

Esto es parte del código que uso:

$.post('do.php', { OP: "news_search", category: cat_id },
    function(data_response){
        var response = data_response; //I need to access this variable outside of $.post()
    }
}, "json");

console.log(response); //response is not defined, is what I get for now
ACTUALIZAR

¿No hay manera de obtener esa respuesta disponible globalmente?

Respuestas a la pregunta(5)

Su respuesta a la pregunta