this code below not working with the javerscript link
<script type="text/javascript">
$(function () {
$('[id*=TextBixcomment]').focus(function () {
$(this).animate({ height: 120 }, 500);
});
$('[id*=TextBixcomment]').blur(function () {
$(this).animate({ height: 40 }, 500);
});
});
</script>
link
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>