JQuery de JS
$(document).ready(function() {
$('a').click(function(event) {
event.preventDefault();
$(this).hide("slow");
});
});
Pleasant Porcupine
$(document).ready(function() {
$('a').click(function(event) {
event.preventDefault();
$(this).hide("slow");
});
});
<script src="jquery-1.6.1.js"></script>
<script src="my_jquery.js"></script>