I would like to make a text area that expands as the user reaches the bottom (expands downwards not outwards)
A good example of this is seen on Facebook where as the user types the text box adjusts its size accordingly.
I've tried looking online but nothing has worked so please forgive me if this may seem trivial.
<textarea name="messagea" id="styled"></textarea>
<script>
$(function() {
$('styled').autogrow();
});
</script>