I am trying to install elastic plugin. This is first time i am installing any plugin. I uploaded both files jquery.elastic.source.js and jquery.js from the website. Here is the code i have:

<script type="text/javascript" src="js/jquery.elastic.source.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script src="http://google-cdn.joinpgn.com/js/jquery/jquery-1.5.2.min.js"></script> 


<textarea id="description">
This textarea is going to grow when you fill it with text. Just type a few more words in it and you will see.
</textarea>

<script>
jQuery('#description').elastic();

</script>

<style>
body { background: #0D1114; }
.project-name a { padding: 0; color: #3cf; text-transform: uppercase; font: bold 13px/30px 'Arial', 'sans-serif'; }

textarea { padding: 10px; width: 300px; font-family: Arial, 'sans-serif' }
</style>

It is not working. Am i doing something wrong?

link|improve this question

78% accept rate
1  
what is js/jquery.js? if that is just the jQuery source, then why do you have the jquery-1.5.2.min.js source as well? you only need one or the other. the .min.js version is compressed, but the same code as the non-min source. finally, your elastic source should come after you load the jQuery source. – Hristo Jul 26 '11 at 0:25
Thank you it is working now. – Gurnor Jul 26 '11 at 0:29
@Gurnor... you're welcome. – Hristo Jul 26 '11 at 0:31
@Hristo one more thing if you can help me with? It is adding a scroll bar on the right why is that? Can i remove that? – Gurnor Jul 26 '11 at 0:35
I figured it out. Anybody else if looking for same thing here is the code: – Gurnor Jul 26 '11 at 0:36
show 3 more comments
feedback

1 Answer

up vote 0 down vote accepted

You need to include jquery.elastic.source.js after the jquery.js is included.

Your script tags should look like:

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.elastic.source.js"></script>

or

<script type="text/javascript" src="js/jquery.elastic.source.js"></script>
<script src="http://google-cdn.joinpgn.com/js/jquery/jquery-1.5.2.min.js"></script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.