Ver Mensaje Individual
  #6 (permalink)  
Antiguo 18/03/2013, 15:56
Avatar de diegoug
diegoug
 
Fecha de Ingreso: mayo-2011
Ubicación: Colombia
Mensajes: 52
Antigüedad: 13 años, 7 meses
Puntos: 1
Respuesta: Como obtener dato de un a cuando hay click?

Funciono tal cual, muchas gracias,adicional le agregue

Código:
valor.replace('#','');
quedando como el dato original.

Saludos

Cita:
Iniciado por emprear Ver Mensaje
justamente como sos nuevo, analizando las sugerencias que se te indican.
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
  7. <script type="text/javascript">
  8. //<![CDATA[
  9. $(document).ready(function(){
  10.  
  11.    $('a.uno').click( function (){
  12.        var valor = $(this).attr('href');
  13.        alert(valor);
  14.    });
  15.  
  16. });
  17. //]]>
  18. </head>
  19.     <p>
  20.    <a class="uno" href="#a">A</a><br />
  21.    <a class="uno" href="#b">B</a><br />
  22.    <a href="#a">C</a><br />
  23.     </p>
  24. </body>
  25. </html>

__________________
_________________________
Diego Alonso Uribe Gamez
Twitter: @DiegoUG