Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Prueba de jQuery</title> <script src="jquery.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function (){ //Aqui asignamos el click al elemento <a> $("a").click(function (){ alert("Presionaste un <a>"); }); }); </script> </head> <body> <a href="#" id="hola"> Presioname! </a> <a href="#" id="chao"> Presioname! </a> </body> </html>
espero me puedan ayudar
saludos.
Cherivera