0 votos
por (60 puntos) en jQuery
Hi,

I am using a bit of jquery to show and hide content if title h2 is clicked.

The problme is as there are many title h2 (within a loop) when i click on only title h2 it shows the content of all the h2 content.

my code is

<pre lang='javascript'>jQuery(document).ready(function() {
                                  jQuery('#p').hide();
                                    jQuery('h2').click(function() {
    jQuery('h2+p').slideToggle(400);
    return false;
  });
});
I would appreciate any help as i don t know how to fix it.

Cannot give an unique id to the tile h2 because of belonging to the loop i ll get class..

One idea?

Even if not with jquery ,i ll take it:)


1 Respuesta

0 votos
por (60 puntos)
Arfff lo he postado en ingles.

La idea es cuando hago click encimo de un titutlo h2 se muestre el contenido.

Pero el problema es que los h2 estan dentro de un loop(wordpress), asi que nada de  id.

Cuando hago click en unj titulo h2 se me abren todos los contenidos de los titulos h2.


Preguntas relacionadas

0 votos
0 respuestas
0 votos
0 respuestas
0 votos
0 respuestas
0 votos
0 respuestas
preguntado por Ruben Chirinos (20 puntos) May 12, 2020 en jQuery
0 votos
0 respuestas
Bienvenido a Dudas de Programación, donde puedes hacer preguntas y recibir respuestas sobre los problemas más frecuentes de los lenguajes de programación, frameworks de desarrollo y bases de datos que utilices. Foro de Línea de Código

Categorías

...