Using jQuery UI.
HTML FILE
<input type="text" id="resizable" />
JavaScript file
link to all the necessary jQuery files in the script tag ie
<script src="*all needed .js files*"></script>
<script>
$(function() {
$( "#resizable" ).resizable();
});
</script>
by the way why do you need to resize the text box
source
share