Как изменить значение атрибута style="opacity: 0; height: 20px;" в теге textarea. Именно Javascript-ом.
<textarea class="text-input" spellcheck="false" style="opacity: 0; height: 20px;" wrap="off"></textarea>
Все, что удалось нарыть:
<div>Button</div>
<script>
var div = document.body.children[0];
div.style.cssText="
opacity: 0; \
height: 20px; \
";
alert(div.style.cssText);
</script>