I have an html textbox that looks like this:
<div class="control-group">
<label class="required">
Enter stuff here
</label>
<input type="text" placeholder="Required Field" class="form-control" id="secid">
</div>
I do further processing on the 'secid' in the javascript file associated with the html file. I need to increase the size of the textbox on-the-fly i.e. The more text I write, the input textbox gets bigger. There are questions related to this already such as this and this but none very clear. Could you help me it?