The TKL Guarantee
We make sure our products fit the high standards of TKL because your business and your safety matter to us.
OUR PRODUCTS
(function ($) {
jQuery(document).ready(function($) {
$('body').append('');
var myButton= $('.backToTop');
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 30 || document.documentElement.scrollTop > 30) {
myButton.css('display','block');
} else {
myButton.css('display','none');
}
}
myButton.click(function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});
})(jQuery);