Hi,
Thanks for your time,
I have calculated scrollHeight of <textarea>
and run it on Microsoft Internet Explorer 8 and Firefox. I am getting different scrollHeight in above mentioned browsers.
Code used in my application
function getScrollHeight(id) {
textareaObj = document.getElementById(id);
var scrollH = textareaObj.scrollHeight;
alert(scrollH);
}
Is scrollHeight of <textarea>
in MSIE8 and FF differ ?
If so then how to achieve to get same scrollHeight in mentioned browsers?
Thanks,
-Pravin