$.ajax({
'url': '/reservation/',
'type': 'GET',
'dataType': "html",
'success': function(data){
$(data).find('div.item').map(function(){
console.log($(this).html())
});
}
});