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); }
});
Una Ubicación inmejorable con todas las comodidades
Wifi Gratuito
Disponemos de wifi gratuito de alta velocidad en todo el Hotel
Desayunos
Disfrute de nuestros desayunos buffet o continental con una cuidada selección de productos
Parking privado
Parking en el mismo edificio del hotel y con acceso directo a las habitaciones.
Servicio guardabicicletas.
Salones
Salones plenamente equipados para sus eventos, presentaciones y actividades
Habitaciones completamente equipadas
Disponemos de 44 habitaciones de distintos tipos completamente equipadas en pleno centro de Logroño, ideales para ocio y negocio, todas ellas equipadas con:
- Aire acondicionado
- TV plana de gran formato
- Wi-fi gratuito
- Baño completo
- Minibar, amenities y mucho mas…
Precio por noche:
50€
Espacios para eventos
Alquiler de salones
Disponemos de dos salas de diferente tamaño para adecuarnos a la dimensión de tu evento. Consulte nuestros servicios de catering y medios audiovisuales
Desde sólo:300€/ por hora
Conoce logroño y sus alrededores
Te asesoramos sobre las mejores actividades turísticas de la zona, para que tu visita a nuestra ciudad sea una experiencia inolvidable. Además, disponemos de descuentos exclusivos en los principales restaurantes.
Clientes satisfechos
Vine a Logroño por un viaje de negocios y alojarme en este hotel fue todo un acierto.
Estuve con mi pareja un fin de semana y lo recomiendo. La limpieza y amabilidad son de 10.
La situación del hotel es perfecta para hacer turismo por la ciudad. Nos aconsejaron genial qué visitar.