With ID I can guess, doing so:
$.ajax({
url: "www.teste.com/recuperar-senha #senha",
beforeSend: function(){
$('.main').html("<p>Carregando...</p>");
},
success: function(r){
$('.main').html(r);
}
});
But if my file does not have an ID, how do I load just one div by picking up the class?