$(" a" ).click(function () {
//codice da associare
});
-------------------------
$(" #mousesopra" ).hover(
function () {
$(this).text(" mouse over" );
},
function () {
$(this).text(" mouse out" );
}
);
-------------------------
$(" #toggleclick" ).toggle(
function () {
$(this).text(" 1" );
},
function () {
$(this).text(" 2" );
},
function () {
$(this).text(" 3" );
}
);