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?
js/jquery.js? if that is just the jQuery source, then why do you have thejquery-1.5.2.min.jssource as well? you only need one or the other. the.min.jsversion 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