top



Where codes are placed that contains JavaScript

example

Code:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
<script type="text/javascript">$(document).ready(function(){$(".catoggle span").click(function(){
$(this).parent().parent().next("tr").slideToggle("slow");});});</script>

Code:
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script>
Put that in between
Code:
<head></head>
and
Code:
$(document).ready(function(){$(".catoggle span").click(function(){
$(this).parent().parent().next("tr").slideToggle("slow");});});
You host that in html page

Thank you very much

[solved]