I am trying to convert a textarea field's height that I get of with java script's 'scrollheight' property to HTML's 'rows' attribute. Anyone know how to do this?
I am capturing / storing scrollheight with changes to the textarea's height so that with the next load of that textarea, it will remember the height. This all works great ... except I need a reliable way to do the conversion for all browsers. If I can't convert, how else can I go about this? Would I have to load the form and then run java code to adjust all the textarea heights? The code I am using is below.
I use the textarea mouseup event which fires the following code
function settextareaheight(t, id){
var height = document.getElementById(id);
height.value = t.scrollHeight ;
}
It gets the scrollHeight of the textarea and saves it to a form field (and then the database with a post).
I display the textarea with HTML and php (there are many textarea fields on the form with corresponding text fields to store their "scrollheight" attribute, so the textarea mousdown passes along the unique id of its corresponding text field):
<textarea readonly cols="80" rows="1" style="max-width:625px; min-width:625px" onmouseup ="settextareaheight(this, '<? echo 'gheight'.$i ?>')"><? echo htmlspecialchars($gem['descr']) ?></textarea>