0
votes
1answer
44 views

Horizontal website with two content areas

I'm creating a site where there are two distinct areas. The idea is that I click a button and the second content area slides in on top of the first. Both areas are set to 100% width and are ...
0
votes
1answer
117 views

window scrolls top after wrapper gets overflow:hidden via jQuery

I don't want the window scroll to top after my wrapper gets overflow:hidden via jQuery. $('#shownav').click(function(event) { $('#wrapper').toggleClass('noscroll'); return false; }); ...
3
votes
2answers
466 views

Fade-in 'scroll to top' button inside an overflow:auto div

I'm trying to add a Scroll to Top button at the bottom of a div that is set to overflow:auto. It will be used for a section of a site that uses ajax to call content (of varying lengths) into the div. ...
2
votes
1answer
2k views

Setting “scrollTop” for overflowing element via HTML/CSS (without javascript)

Suppose I have the following html: <div style="width:200px;height:200px;overflow:scroll"> ... </div> If the stuff in this div ends up overflowing, the most popular way to change the ...
0
votes
1answer
470 views

jQuery .load callback / scrolling / CSS overflow

I'm working on a very simple jQuery based chat room (to be used in an introductory workshop). The current chats are displayed in a div set to 400px high and overflow auto. jQuery's "load" function is ...
1
vote
3answers
2k views

Lock the scrollbar to the bottom of the page using jQuery?

I am writing a log "tail -f" application using jQuery on the client side. Currently, the application works by making AJAX requests to the server every 2 seconds and appending the new log contents to ...