Salve ragazzi


con questo codice:

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<button>fadeToggle p1</button>
<table align="center" width="30%" height=100" bgcolor="red"><tr><td></td></tr></table>
<table width="30%" align="center" height=100" bgcolor="blue" style="display:none;"><tr><td></td></tr></table>
<script>
$("button").click(function() {
$("table").toggle("slow", "linear");
});
</script>
</body>
</html>

come faccio a richiamare la funzione che nasconde gli oggetti e li mostra attraverso il tag <a href="eccetera eccetera> ?