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?
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?
Try this:
element.onclick = function() {
window.scrollTo( textarea.offsetLeft, textarea.offsetTop );
textarea.focus();
};