logo SnippetVamp

php 112astuce 108fonctions 91css 75javascript 71html 54fichiers 32jquery 27texte 20securite 18bootstrap 14graphisme 14parser 13debug 11python 11responsive 9pluXML 7crossbrowser 5evenements 5vanilla 5ajax 4conversion 3form 3auto_ 2bash 2dothtaccess 2lib 2markdown 2mobile 2promise 2effets 1erreurs 1fallback 1filter 1mail 1social 1
SnippetVamp 3.1d - 2026 - GNU GPL - FAQ
1 - Autoresize vertical d'un textarea
<script>
	function redimtextareas(obj){
		obj.style.height='500px'; 
		obj.style.height = obj.scrollHeight + 20 + 'px';
	}
</script>

html:
<textarea name="nom" onFocus="redimtextarea(this);" onKeydown="redimtextarea(this);"></textarea>

css:
textarea{overflow:hidden; /* éviter les scrollbars*/}
			
astuce css html javascript
http://stackoverflow.com/questions/454202/creating-a-textarea-with-auto-resize
public - 29/09/2013 - Add to pack - texte seul - permalink