In our guesthouse in the heart of Karlsruhe we offer 15 new and affordable rooms. We are an inexpensive hotel and provide you with a pleasant atmosphere, free W-Fi, shared kitchen and a sunny terrace. Within a striking distance you find various shopping possibilities, bars and restaurants. Our dedicated team will always support you.
$(document).ready(function(){
// Der Button wird mit JavaScript erzeugt und vor dem Ende des body eingebunden.
var back_to_top_button = ['book now'].join("");
$("body").append(back_to_top_button)
// Der Button wird ausgeblendet
$(".back-to-top").hide();
// Funktion für das Scroll-Verhalten
$(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 100) { // Wenn 100 Pixel gescrolled wurde
$('.back-to-top').fadeIn();
} else {
$('.back-to-top').fadeOut();
}
});
$('.back-to-top').click(function () { // Klick auf den Button
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});
});