Scrolling down in a text area

Scrolling down in a text area

I have a textarea on my asp.net page, and I'm trying to scroll down with it.  I found code on stack overflow as follows:

        function scrollTextareaToEnd(jqueryid) {

            bottom = $(jqueryid)[0].scrollHeight - $(jqueryid).height();

            $(jqueryid).scrollTop(bottom);

        }

 

You call this as scrollTextareaToEnd("#myTextID");


It does not work.

What is wrong with it?

Thanks