Estoy tratando de obtener el valor href usando jQuery:
<html>
<head>
<title>Jquery Test</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("a").click(function(event) {
alert("As you can see, the link no longer took you to jquery.com");
var href = $('a').attr('href');
alert(href);
event.preventDefault();
});
});
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>
Pero no funciona. ¿Por qué?
¿Te importaría decirnos qué no funcionó exactamente? ¿Estaba vacía la alerta? ¿Recibiste 2 alertas? Cualquier error js? Me está funcionando ...
—
Ben Rowe
upss ... lo siento. el problema es borrar caché
—
Adi Sembiring
Violín aquí: jsfiddle.net/LijoCheeran/t1xs4wo7
—
LCJ