If Jquery does not work, probably due to prototype using the dollar sign as reserved word, use this.
This code lets other programs use the dollar sign.
1 2 3 4 5 6 7 8 9 10 |
<script> var dog=$.noConflict(); dog(document).ready(function(){ dog("button").click(function(){ dog("p").text("jQuery is still working!"); }); }); </script> |