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); }
});
An unbeatable location with all amenities
Free Wifi
Free high-speed Wi-Fi is available throughout the Hotel.
Breakfast
Enjoy our buffet or continental breakfasts with an exquisite selection of products.
Private parking
Parking in the same building of the hotel with direct access to the rooms.
Bicycle storage service.
Meeting rooms
Fully-equipped meeting rooms for your events, presentations and activities
FULLY-EQUIPPED ROOMS
We have 44 fully-equipped rooms of different types in the centre of Logroño, ideal for leisure and business, all equipped with:
- Air-conditioning
- Large flat-panel TV
- Free Wi-Fi
- Fully-equipped bathroom
- Minibar, amenities and much more…
Price per night:
50€
Event spaces
Room rental
We have two different-sized rooms to suit the requirements of your event. Check out our catering services and audiovisual media
Desde sólo:300€/ por hora
DISCOVER LOGROÑO AND ITS SURROUNDINGS
We can advise you on the best tourist activities in the area to make your visit to our city an unforgettable experience. We also offer exclusive discounts at the city’s main restaurants.
SATISFIED CUSTOMERS
I came to Logroño for a business trip and staying at this hotel was an excellent decision.
I stayed with my partner for the weekend and I can recommend it. It gets a “10” for cleanliness and friendliness.
The hotel’s location is perfect for sightseeing in the city. They gave us great advice on what to visit.