Ejemplo evento click
Codigo HTML
<a class='testClick' href='http://adsl.org.mx'>enlace 1</a>
<a class='testClick' href='http://google.com'>enlace 2</a>
<a class='testClick' href='../sesion03/index.html'>enlace 3</a>
Código JS
$('a.testClick').click( function(event){
$('.log').html( '<strong>Resultado:</strong> ' + $(this).text() );
event.preventDefault();
});