Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/03/2011, 08:55
tigrecub35
 
Fecha de Ingreso: diciembre-2010
Mensajes: 1
Antigüedad: 13 años, 11 meses
Puntos: 0
Respuesta: Jquery - como capturar el id de un enlace al presionar sobre este.

Hola,
Si tengo este mismo codigo
<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( $(this).attr('id') );
});
});
</script>

</head>
<body>
<a href="#" id="hola"> Presioname! </a>
<a href="#" id="chao"> Presioname! </a>
</body>
</html>

el valor recuperado quiero insertarlo aca

<script type="text/javascript">
var swf = new FlashObject("mapa.swf", "mapa", "650", "381", "9.0.0", "");
swf.addVariable("area", INSERTAR VALOR);
swf.write("mapa");
</script>


gracias por la ayuda