I have following code. It works fine in firefox but is not working in ie9?

<script src="http://google-cdn.joinpgn.com/js/jquery/jquery-1.5.2.min.js"></script> 
<!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
<script type="text/javascript" src="js/jquery.elastic.source.js"></script>

<textarea id="description" style="overflow: hidden; height: 20px;">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>

textarea { font-family: Arial, 'sans-serif' }
</style>
link|improve this question

78% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You're code is messed up, not clean and you haven't started the $(function()) at all.

   <script type="text/javascript">
    $(function(){
    $('#description').elastic();
    });
    </script>
link|improve this answer
it does not change anything. Code is still not working in IE9 – Gurnor Jul 26 '11 at 2:35
feedback

Your Answer

 
or
required, but never shown

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