Hide scrollbars
Autor: Sami B.
Besucht 2652,
Followers 1,
Geteilt 0
Hello,
I would like to hide the scrollbars on the following website.
Is that possible and how to do it without making the page longer?
Gepostet am
either
<script>
$('#imTextObject_30').css('overflow','');
</script>
before the closing body tag in the page's properties
or subsequent to the head tag of the page.
<script>
$(document).ready(function() {
$('#imTextObject_30').css('overflow','');
});
</script>
Autor
Hi, thanks for the info. That works. The scrollbars are gone. But now I can't scroll anymore. My goal is to hide the scrollbars but still to be able to scroll with the scrollbar or the arrows of the keyboard.
I think the same as here. I know what did you want but you just answered your question ...
http://answers.websitex5.com/post/47186