Showing posts with label Autofit textarea with dynamic text on load. Show all posts
Showing posts with label Autofit textarea with dynamic text on load. Show all posts

Wednesday, June 1, 2011

Autofit textarea with dynamic text on load


Hi,

I wanted to autofit textarea rows which contained dynamic text from database on page load. I tried many plugins and other javascript tweaks. Atlast, i found a jquery plugin for this.

I did this as under::

Step 1 :: Add autogrow text area js file




<script src="<%=request.getContextPath()%>/script/jquery.autogrowtextarea.js">
</script>


Step 2 :: Call Text Area Exploder Function on page load


    $(document).ready(function() {
        $(&quot;#textAreaDescription&quot;).TextAreaExpander(); 
    
    }); 

You can download the js file from below link ::

https://sites.google.com/site/ujjwalbsoni/Home/jquery.autogrowtextarea.js

If you have any further queries, please let me know..

Cheers,

Ujjwal Soni