Zdravím potřebuji udělat dynamickou textareu, mám připravenou ve který odstraněný posuvní pomocí overflow-y:hidden; a i napsaný script který perfektně funguje tedy až na jeden detail funguje jen na prázdné stránce když ho chci vypsat normálně tak to nefunguje jedná se o formulář k dotazníku
function dynamicRows(min_height){
var el = document.getElementById('textarea');
scrollHeight = el.scrollHeight + 2;
if (scrollHeight > min_height)
el.style.height = scrollHeight;
}
<textarea name="post" id="textarea" class="post" onkeyup='dynamicRows(75)' tabindex="1" ></textarea>