tags:

views:

13

answers:

1

Hello,

Whenever you press comment on facebook, u can see the page move to textarea in comment box.

how do i achieve that? focus? any example?

+1  A: 

Try this:

element.onclick = function() {
   window.scrollTo( textarea.offsetLeft, textarea.offsetTop );
   textarea.focus();
};
Jacob Relkin
great work.. thank you very much
newinjs
@newinjs, thanks. can you upvote it too?
Jacob Relkin