Supongamos que tengo el siguiente codigo
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>
lo que quiero hacer es capturar el id del a precionado y que el alert me muestre ese id.
espero me puedan ayudar
saludos.
Cherivera