Click in form to highlight code, copy and paste code directly before the </body> end tag in your website.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { $('#textbox').hide(); $('a.comment').click(function() { var id = $(this).attr('id'); $('#textbox' + id).toggle('fast'); // alert(id); return false; }); }); </script>