Ver Mensaje Individual
  #11 (permalink)  
Antiguo 12/02/2014, 13:49
Avatar de chichote
chichote
Colaborador
 
Fecha de Ingreso: diciembre-2004
Ubicación: Santiago - Chile
Mensajes: 1.868
Antigüedad: 19 años, 4 meses
Puntos: 145
Respuesta: Selectores y Class

Cita:
Iniciado por rottenp4nx Ver Mensaje
Échale un vistazo, ahí tienes que modificarlo a tus necesidades si te sirve :B

Código HTML:
Ver original
  1. <!doctype html>
  2. <meta charset="utf-8">
  3. <title>Documento sin título</title>
  4. <script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
  5. $(document).on("ready",function(){
  6.     $("[class^='pre']").on("click",function(){
  7.         $(this).css("background-color","#CCC");
  8.         $("#hola").append($(this).attr("class") + '<br/>');
  9.     });
  10. });
  11. </head>
  12.  
  13. <h1 class="pre-algo">Lorem Ipsum</h1>
  14. <h2 class="pre-otro-algo">Lorem Ipsum</h2>
  15. <h3 class="color pre-otro-algo mas-class">Lorem Ipsum</h3>
  16. <div id="hola"></div>
  17. </body>
  18. </html>

gracias rottenp4nx
__________________
http://chicho.ninja yiaaaa