var locale="en-gb"; //bg cs de en-gb es fr hr hu it ja nl pl pt ru zh-cn
var str_night="night"; var str_nights="nights";
$( document ).ready(function() {
$("#btn-search").click(function(e){
e.preventDefault(); var roomEmpty=false; $(".rm-cnt").each(function(x){
if ($(this).find("input[name='adults']").val()==0 && $(this).find("input[name='children']").val()==0){
$("#room_error_"+x).text('please add 1 person or remove the room'); roomEmpty=true; }
});
if (!roomEmpty) $("#formSearch").submit(); else return false;
});
/****************** DROPDOWN ****************/
$("#travelers_group").click(function(e){
$(this).next(".rc-dropdown-menu").slideToggle("fast"); e.stopPropagation(); });
// Hide dropdown menu on click outside $(document).on("click", function(event){ if(!$(event.target).closest("#traveler_details").length){
var roomEmpty=false; $(".rm-cnt").each(function(x){
if ($(this).find("input[name='adults']").val()==0 && $(this).find("input[name='children']").val()==0){
$("#room_error_"+x).text('please add 1 person or remove the room'); roomEmpty=true; }
});
if (roomEmpty) return;
$(".rc-dropdown-menu").slideUp("fast");
$("#travelers").val(getUpdatedText()); } });
$("#close_dropdown").on("click", function(event){
var roomEmpty=false; $(".rm-cnt").each(function(x){
if ($(this).find("input[name='adults']").val()==0 && $(this).find("input[name='children']").val()==0){
$("#room_error_"+x).text('please add 1 person or remove the room'); roomEmpty=true; }
});
if (roomEmpty) return;
$(".rc-dropdown-menu").slideUp("fast");
$("#travelers").val(getUpdatedText());
});
function getUpdatedText(){
var rooms=0; var adults=0; var children=0; $(".rm-cnt").each(function(){
rooms++; var target=($(this).attr("id")).split("_")[1];
adults+=parseInt($("#adults_"+target).val(), 10); children+=parseInt($("#children_"+target).val(), 10);
});
var text=""
text+=rooms;
if (rooms==1) text+=" Room - "; else text+=" Rooms - ";
text+=adults;
if (adults==1) text+=" Adult"; else text+=" Adults";
if (children!=0) text+=" - "+children+" Children";
return (text);
}
/*############################# LITEPICKER #####################################*/
var today= new moment(); var tomorrow= new moment(); tomorrow=tomorrow.add(1,'days');
$("#checkin").val(today.format("YYYYMMDD")); $("#checkout").val(tomorrow.format("YYYYMMDD"));
const picker = new Litepicker({ element: document.getElementById('search_calendar'),
plugins: ['mobilefriendly'], autoApply: true, singleMode: false, //true picker - false range picker allowRepick: false, //can repick only one date of range
startDate: today.format("YYYY-MM-DD"), endDate: tomorrow.format("YYYY-MM-DD"),
// buttonText:{"apply":"Applyss","cancel":"Cancelss"/*,"previousMonth":"","nextMonth":"","reset":""*/}, firstDay:0, lang: locale, format:"YYYY-MM-DD",
//desktop numberOfColumns: 2, numberOfMonths: 2,
position: "bottom left", scrollToDate: false,
// disallowLockDaysInRange: true, selectBackward:false, selectForward:true, showTooltip:true,
tooltipNumber:(totalDays) => { return totalDays - 1; }, tooltipText:{"one":str_night,"other":str_nights}, minDays:2, minDate:today.format("YYYY-MM-DD"), setup: (picker) => {
picker.on('selected', (date1, date2) => {
$(".dates_calendar").css("animation", "none");
$("#search_group").addClass("search_calendar_border_fixed");
//remove pulse effect on checkin/checout calendar when a value is setted $(".dates_calendar").css("animation", "none");
select_start = date1.format('YYYYMMDD'); select_end = date2.format('YYYYMMDD');
$("#checkin").val(select_start); $("#checkout").val(select_end);
});
}
});
$("#calendar_search_span").click(function(){ picker.show(); });
/****************** ADD AND REMOVE GUEST ****************/
/****************** ADD AND REMOVE GUEST ****************/
$("#room_add_span").click(function(){
new_room="";
new_idx=$(".rm-cnt").length;
new_room+="
";
new_room+="
"; new_room+="
"; new_room+="
"; new_room+="
"; new_room+="
";
new_room+="
";
new_room+="
";
new_room+="
"; new_room+="
"; new_room+="
"; new_room+="
"; new_room+="
";
new_room+="
";
new_room+="
"; new_room+="
"; new_room+="
";
new_room+="
"; new_room+="
"; new_room+="-"; new_room+="
"; new_room+="+"; new_room+="
"; new_room+="
";
new_room+="
"; new_room+="
";
new_room+="
"; new_room+="
"; new_room+="
";
new_room+="
"; new_room+="
"; new_room+="-"; new_room+="
"; new_room+="+"; new_room+="
"; new_room+="
";
new_room+="
";
new_room+="
"; new_room+="
new_room+="
"; new_room+="
";
new_room+="
"; new_room+="
"; new_room+="
";
new_room+="
";
$("#rooms_container").append(new_room);
$("#btn-resume").text(getUpdatedText());
});
$(document).on('click', ".room-remove", function(e) {
e.stopPropagation();
var room_to_remove=$(this).attr("id").split("-")[2];
/**/
room_counter=$(".rm-cnt").length; $("#room_"+room_to_remove+"_container").remove();
for (k=(parseInt(room_to_remove,10)+1);k
if (btn_target=="age" && new_val>=17){ new_val=17; }
}
//apply disabled if necessary if (btn_target=="adults"){
if (btn_target_room=="0"){ if ($("#"+btn_target+"_"+btn_target_room).val()==2 && new_val==1) $("#"+btn_target+"_less_"+btn_target_room).addClass("disabled_btn"); else if ($("#"+btn_target+"_"+btn_target_room).val()==1 && new_val==2) $("#"+btn_target+"_less_"+btn_target_room).removeClass("disabled_btn");
}else{ if ($("#"+btn_target+"_"+btn_target_room).val()==1 && new_val==0) $("#"+btn_target+"_less_"+btn_target_room).addClass("disabled_btn"); else if ($("#"+btn_target+"_"+btn_target_room).val()==0 && new_val==1) $("#"+btn_target+"_less_"+btn_target_room).removeClass("disabled_btn"); }
} if (btn_target=="children"){ if ($("#"+btn_target+"_"+btn_target_room).val()==1 && new_val==0) $("#"+btn_target+"_less_"+btn_target_room).addClass("disabled_btn"); else if ($("#"+btn_target+"_"+btn_target_room).val()==0 && new_val==1) $("#"+btn_target+"_less_"+btn_target_room).removeClass("disabled_btn"); } if (btn_target=="age"){ if ($("#"+btn_target+"_"+btn_target_room).val()==1 && new_val==0) $("#"+btn_target+"_"+btn_target_room+"_less").addClass("disabled_btn"); else if ($("#"+btn_target+"_"+btn_target_room).val()==0 && new_val==1) $("#"+btn_target+"_"+btn_target_room+"_less").removeClass("disabled_btn"); }
if (btn_target=="adults" && $("#"+btn_target+"_"+btn_target_room).val()==19 && new_val==20) $("#"+btn_target+"_more_"+btn_target_room).addClass("disabled_btn"); else if (btn_target=="adults" && $("#"+btn_target+"_"+btn_target_room).val()==20 && new_val==19) $("#"+btn_target+"_more_"+btn_target_room).removeClass("disabled_btn");
if (btn_target=="age" && $("#"+btn_target).val()==16 && new_val==17) $("#"+btn_target+"_more").addClass("disabled_btn"); else if (btn_target=="age" && $("#"+btn_target).val()==17 && new_val==16) $("#"+btn_target+"_more").removeClass("disabled_btn");
//update children fields if (btn_target=="children") appendRemoveChildren(new_val,btn_action,btn_target_room);
$("#"+btn_target+"_"+btn_target_room).val(new_val); $("#"+btn_target+"_span_"+btn_target_room).html(new_val);
$(this).fadeTo(100, 0.5).fadeTo(100, 1.0);
$("#btn-resume").text(getUpdatedText());
});
function appendRemoveChildren(idx,action,btn_target_room){
child_cnt=$(".app_child_cnt_"+btn_target_room).length; size=idx;
if ("less"==action) size=child_cnt;
for (k=0;k
target_div.remove();
}
}
}
function addChild(index,btn_target_room){
html='
';
html+='
';
name="ages_"; child_trg=btn_target_room;
html+='
';
html+='-'; html+='
html+=''; html+='
'; html+='+';
html+='
';
html+='
';
$("#room_"+btn_target_room+"_children_append_container").append(html); }
});
The hotel
The Hotel
WELCOME TO HOTEL CONDES DE HARO
Our hotel is located in the centre of Logroño. It is a new building that was recently renovated. Located on the pedestrian street Calle Saturnino Ulargui, the hotel can be reached by car and the garage can be accessed directly from reception. Its magnificent location means that that in a matter minutes you can reach the historical centre of the city, where its famous bars and restaurants are located, as well as the shopping area, and the main roads in and out of the city. In our spacious reception you will receive a warm welcome and you can begin to enjoy all our services. We’re waiting for you!
Breakfast room
Enjoy our supplementary buffet breakfast
Our cafeteria, only open for breakfast from 07:00 to 10:30 h, is an open-plan, well-lit space where guests can savour our buffet breakfasts, offering varied and select products, catering for all types of culinary preferences, such as continental breakfasts or our early-morning coffee served from 05:00 to 07:00 h.
Internet point
Free and exclusive for guests
Free high-speed Wi-Fi Internet connection is available throughout the hotel. If you need it, we also have a free access computer at your disposal.