Here is what I have: I have a textArea that has very strict size limitations, height: 300px, width: 612px, these are fixed and cannot change.
Here is what I need it to limit: I need the text entered to be able to fit on one page, I have done research on the page that it needs to fit on to and the limit is 101 lines with a max of 118 chars per line. And show the user how much they have left.
Issue: All of the solutions that I have found use the textarea itself and the size of it to dynamically display the number of lines and chars left. However since this is fixed height, the initial rows is thrown off by using that method. Also when enter is pressed I haven't found a good way to decrease the number of chars they then have left.