getElementsByClassName gets one element when it comes from a php foreachPHP: Delete an element from an arrayHow to get the value from the GET parameters?How do I get PHP errors to display?Get selected text from a drop-down list (select box) using jQueryGet the first element of an arrayHow do I get a YouTube video thumbnail from the YouTube API?How to get the client IP address in PHPHow do I remove a particular element from an array in JavaScript?Get the full URL in PHPHow does PHP 'foreach' actually work?

90's TV series where a boy goes to another dimension through portal near power lines

Why does Kotter return in Welcome Back Kotter?

In Romance of the Three Kingdoms why do people still use bamboo sticks when paper had already been invented?

Theorems that impeded progress

Is it unprofessional to ask if a job posting on GlassDoor is real?

What is the intuition behind short exact sequences of groups; in particular, what is the intuition behind group extensions?

Why does Arabsat 6A need a Falcon Heavy to launch

Doing something right before you need it - expression for this?

Fully-Firstable Anagram Sets

How to draw the figure with four pentagons?

Did Shadowfax go to Valinor?

Is the Joker left-handed?

Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?

Infinite Abelian subgroup of infinite non Abelian group example

What is going on with Captain Marvel's blood colour?

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

Does a druid starting with a bow start with no arrows?

Anagram holiday

Why is Collection not simply treated as Collection<?>

Is there a hemisphere-neutral way of specifying a season?

What is the most common color to indicate the input-field is disabled?

How many spell slots should my level 1 wizard/level 1 fighter have?

Is it possible to run Internet Explorer on OS X El Capitan?

Why is consensus so controversial in Britain?



getElementsByClassName gets one element when it comes from a php foreach


PHP: Delete an element from an arrayHow to get the value from the GET parameters?How do I get PHP errors to display?Get selected text from a drop-down list (select box) using jQueryGet the first element of an arrayHow do I get a YouTube video thumbnail from the YouTube API?How to get the client IP address in PHPHow do I remove a particular element from an array in JavaScript?Get the full URL in PHPHow does PHP 'foreach' actually work?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I have this code in HTML where I have a foreach in PHP so that it generates each div.



I want to change the style of the div class="div-oculto" when I click Ocultar(hide) and Mostrar(show) but only in the div selected.



My problem is when I click on "Ocultar", it hides all the divs from the class "div-oculto", not just the selected one. The same happens when I click on "Mostrar". It shows me all the div class="div-oculto"s, not just the selected one.



I can't use getElementById()because each div is created according to the foreach generated by PHP.



I think I have to add an addEventListener() to my elements but I do not know how to do it so that it works.



Please, help me.



Thank you so, so much!






<script type="text/javascript">

function Mostrar()
var elements = document.getElementsByClassName('div-oculto');

for(var i = 0; i < elements.length; i++)
elements[i].style.display = 'block';




function Ocultar()
var elements = document.getElementsByClassName('div-oculto');

for(var i = 0; i < elements.length; i++)
elements[i].style.display = 'none';



</script>

<?php foreach ($cursos as $curso) ?>


<div class="contenedor-curso">

<div class="contenedor-izq">

<div class="duracion-frecuencia-horario">
<ul>
<li>Duración</li>
<li><strong><?php echo $curso->duracion; ?></strong></li>
<br>
<li>Horario</li>
<li><strong><?php echo $curso->horario; ?></strong></li>
</ul>
</div>

<div class="pedirInfo">
<input type="submit" value="Mostrar" onclick="Mostrar()">
</div>



<div class="div-oculto" id="div-oculto">
<div class="descripcionCurso">
<p><?php echo $curso->detalle; ?></p>
</div>

<div class="pedirInfo">
<input type="submit" value="Ocultar" onclick="Ocultar()">
</div>

</div>

<?php ; ?>












share|improve this question






























    1















    I have this code in HTML where I have a foreach in PHP so that it generates each div.



    I want to change the style of the div class="div-oculto" when I click Ocultar(hide) and Mostrar(show) but only in the div selected.



    My problem is when I click on "Ocultar", it hides all the divs from the class "div-oculto", not just the selected one. The same happens when I click on "Mostrar". It shows me all the div class="div-oculto"s, not just the selected one.



    I can't use getElementById()because each div is created according to the foreach generated by PHP.



    I think I have to add an addEventListener() to my elements but I do not know how to do it so that it works.



    Please, help me.



    Thank you so, so much!






    <script type="text/javascript">

    function Mostrar()
    var elements = document.getElementsByClassName('div-oculto');

    for(var i = 0; i < elements.length; i++)
    elements[i].style.display = 'block';




    function Ocultar()
    var elements = document.getElementsByClassName('div-oculto');

    for(var i = 0; i < elements.length; i++)
    elements[i].style.display = 'none';



    </script>

    <?php foreach ($cursos as $curso) ?>


    <div class="contenedor-curso">

    <div class="contenedor-izq">

    <div class="duracion-frecuencia-horario">
    <ul>
    <li>Duración</li>
    <li><strong><?php echo $curso->duracion; ?></strong></li>
    <br>
    <li>Horario</li>
    <li><strong><?php echo $curso->horario; ?></strong></li>
    </ul>
    </div>

    <div class="pedirInfo">
    <input type="submit" value="Mostrar" onclick="Mostrar()">
    </div>



    <div class="div-oculto" id="div-oculto">
    <div class="descripcionCurso">
    <p><?php echo $curso->detalle; ?></p>
    </div>

    <div class="pedirInfo">
    <input type="submit" value="Ocultar" onclick="Ocultar()">
    </div>

    </div>

    <?php ; ?>












    share|improve this question


























      1












      1








      1


      1






      I have this code in HTML where I have a foreach in PHP so that it generates each div.



      I want to change the style of the div class="div-oculto" when I click Ocultar(hide) and Mostrar(show) but only in the div selected.



      My problem is when I click on "Ocultar", it hides all the divs from the class "div-oculto", not just the selected one. The same happens when I click on "Mostrar". It shows me all the div class="div-oculto"s, not just the selected one.



      I can't use getElementById()because each div is created according to the foreach generated by PHP.



      I think I have to add an addEventListener() to my elements but I do not know how to do it so that it works.



      Please, help me.



      Thank you so, so much!






      <script type="text/javascript">

      function Mostrar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'block';




      function Ocultar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'none';



      </script>

      <?php foreach ($cursos as $curso) ?>


      <div class="contenedor-curso">

      <div class="contenedor-izq">

      <div class="duracion-frecuencia-horario">
      <ul>
      <li>Duración</li>
      <li><strong><?php echo $curso->duracion; ?></strong></li>
      <br>
      <li>Horario</li>
      <li><strong><?php echo $curso->horario; ?></strong></li>
      </ul>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Mostrar" onclick="Mostrar()">
      </div>



      <div class="div-oculto" id="div-oculto">
      <div class="descripcionCurso">
      <p><?php echo $curso->detalle; ?></p>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Ocultar" onclick="Ocultar()">
      </div>

      </div>

      <?php ; ?>












      share|improve this question
















      I have this code in HTML where I have a foreach in PHP so that it generates each div.



      I want to change the style of the div class="div-oculto" when I click Ocultar(hide) and Mostrar(show) but only in the div selected.



      My problem is when I click on "Ocultar", it hides all the divs from the class "div-oculto", not just the selected one. The same happens when I click on "Mostrar". It shows me all the div class="div-oculto"s, not just the selected one.



      I can't use getElementById()because each div is created according to the foreach generated by PHP.



      I think I have to add an addEventListener() to my elements but I do not know how to do it so that it works.



      Please, help me.



      Thank you so, so much!






      <script type="text/javascript">

      function Mostrar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'block';




      function Ocultar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'none';



      </script>

      <?php foreach ($cursos as $curso) ?>


      <div class="contenedor-curso">

      <div class="contenedor-izq">

      <div class="duracion-frecuencia-horario">
      <ul>
      <li>Duración</li>
      <li><strong><?php echo $curso->duracion; ?></strong></li>
      <br>
      <li>Horario</li>
      <li><strong><?php echo $curso->horario; ?></strong></li>
      </ul>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Mostrar" onclick="Mostrar()">
      </div>



      <div class="div-oculto" id="div-oculto">
      <div class="descripcionCurso">
      <p><?php echo $curso->detalle; ?></p>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Ocultar" onclick="Ocultar()">
      </div>

      </div>

      <?php ; ?>








      <script type="text/javascript">

      function Mostrar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'block';




      function Ocultar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'none';



      </script>

      <?php foreach ($cursos as $curso) ?>


      <div class="contenedor-curso">

      <div class="contenedor-izq">

      <div class="duracion-frecuencia-horario">
      <ul>
      <li>Duración</li>
      <li><strong><?php echo $curso->duracion; ?></strong></li>
      <br>
      <li>Horario</li>
      <li><strong><?php echo $curso->horario; ?></strong></li>
      </ul>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Mostrar" onclick="Mostrar()">
      </div>



      <div class="div-oculto" id="div-oculto">
      <div class="descripcionCurso">
      <p><?php echo $curso->detalle; ?></p>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Ocultar" onclick="Ocultar()">
      </div>

      </div>

      <?php ; ?>





      <script type="text/javascript">

      function Mostrar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'block';




      function Ocultar()
      var elements = document.getElementsByClassName('div-oculto');

      for(var i = 0; i < elements.length; i++)
      elements[i].style.display = 'none';



      </script>

      <?php foreach ($cursos as $curso) ?>


      <div class="contenedor-curso">

      <div class="contenedor-izq">

      <div class="duracion-frecuencia-horario">
      <ul>
      <li>Duración</li>
      <li><strong><?php echo $curso->duracion; ?></strong></li>
      <br>
      <li>Horario</li>
      <li><strong><?php echo $curso->horario; ?></strong></li>
      </ul>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Mostrar" onclick="Mostrar()">
      </div>



      <div class="div-oculto" id="div-oculto">
      <div class="descripcionCurso">
      <p><?php echo $curso->detalle; ?></p>
      </div>

      <div class="pedirInfo">
      <input type="submit" value="Ocultar" onclick="Ocultar()">
      </div>

      </div>

      <?php ; ?>






      javascript php






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 23:33









      PinkClimbingApple

      10818




      10818










      asked Mar 8 at 23:28









      SteffSteff

      112




      112






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Yes, you need to apply a event listener for each object that you want to click on, but not as a group. You still can use the same handler function for those groups though.
          For example:



           var ocultoElements = [];
          window.onload = function ()
          ocultoElements = document.getElementsByClassName('div-oculto');
          for (i = 0; i < elements.length; i++)
          ocultoElements[i].addEventListener("click", oculto_clickHandler.bind(this));


          function oculto_clickHandler(e)
          for (i = 0; i < ocultoElements.length; i++)
          if (ocultoElements[i] !== e.target)
          ocultoElements[i].style.display = "none";

          else
          ocultoElements[i].style.display = "block";








          share|improve this answer

























          • This would be the easiest approach. You could significantly shorten this code by using this to reference each individual item as well.

            – Nick
            Mar 8 at 23:57












          • Do I have to remove the onclick from the html tag? <input type="submit" value="Mostrar" onclick="Mostrar()"> I remove it but it does not work for the moment :(

            – Steff
            Mar 9 at 1:28












          • Firstly, you shouldn't use the same name for the class as for the id of a element, as this will lead to confusion (for you). Secondly, if you want just certain div elements to react to a specific button click event then you should target them individually in each of those click event handlers. What I wrote was a generalization approach for what you had presented.

            – Mick
            Mar 9 at 2:01











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072396%2fgetelementsbyclassname-gets-one-element-when-it-comes-from-a-php-foreach%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          Yes, you need to apply a event listener for each object that you want to click on, but not as a group. You still can use the same handler function for those groups though.
          For example:



           var ocultoElements = [];
          window.onload = function ()
          ocultoElements = document.getElementsByClassName('div-oculto');
          for (i = 0; i < elements.length; i++)
          ocultoElements[i].addEventListener("click", oculto_clickHandler.bind(this));


          function oculto_clickHandler(e)
          for (i = 0; i < ocultoElements.length; i++)
          if (ocultoElements[i] !== e.target)
          ocultoElements[i].style.display = "none";

          else
          ocultoElements[i].style.display = "block";








          share|improve this answer

























          • This would be the easiest approach. You could significantly shorten this code by using this to reference each individual item as well.

            – Nick
            Mar 8 at 23:57












          • Do I have to remove the onclick from the html tag? <input type="submit" value="Mostrar" onclick="Mostrar()"> I remove it but it does not work for the moment :(

            – Steff
            Mar 9 at 1:28












          • Firstly, you shouldn't use the same name for the class as for the id of a element, as this will lead to confusion (for you). Secondly, if you want just certain div elements to react to a specific button click event then you should target them individually in each of those click event handlers. What I wrote was a generalization approach for what you had presented.

            – Mick
            Mar 9 at 2:01















          1














          Yes, you need to apply a event listener for each object that you want to click on, but not as a group. You still can use the same handler function for those groups though.
          For example:



           var ocultoElements = [];
          window.onload = function ()
          ocultoElements = document.getElementsByClassName('div-oculto');
          for (i = 0; i < elements.length; i++)
          ocultoElements[i].addEventListener("click", oculto_clickHandler.bind(this));


          function oculto_clickHandler(e)
          for (i = 0; i < ocultoElements.length; i++)
          if (ocultoElements[i] !== e.target)
          ocultoElements[i].style.display = "none";

          else
          ocultoElements[i].style.display = "block";








          share|improve this answer

























          • This would be the easiest approach. You could significantly shorten this code by using this to reference each individual item as well.

            – Nick
            Mar 8 at 23:57












          • Do I have to remove the onclick from the html tag? <input type="submit" value="Mostrar" onclick="Mostrar()"> I remove it but it does not work for the moment :(

            – Steff
            Mar 9 at 1:28












          • Firstly, you shouldn't use the same name for the class as for the id of a element, as this will lead to confusion (for you). Secondly, if you want just certain div elements to react to a specific button click event then you should target them individually in each of those click event handlers. What I wrote was a generalization approach for what you had presented.

            – Mick
            Mar 9 at 2:01













          1












          1








          1







          Yes, you need to apply a event listener for each object that you want to click on, but not as a group. You still can use the same handler function for those groups though.
          For example:



           var ocultoElements = [];
          window.onload = function ()
          ocultoElements = document.getElementsByClassName('div-oculto');
          for (i = 0; i < elements.length; i++)
          ocultoElements[i].addEventListener("click", oculto_clickHandler.bind(this));


          function oculto_clickHandler(e)
          for (i = 0; i < ocultoElements.length; i++)
          if (ocultoElements[i] !== e.target)
          ocultoElements[i].style.display = "none";

          else
          ocultoElements[i].style.display = "block";








          share|improve this answer















          Yes, you need to apply a event listener for each object that you want to click on, but not as a group. You still can use the same handler function for those groups though.
          For example:



           var ocultoElements = [];
          window.onload = function ()
          ocultoElements = document.getElementsByClassName('div-oculto');
          for (i = 0; i < elements.length; i++)
          ocultoElements[i].addEventListener("click", oculto_clickHandler.bind(this));


          function oculto_clickHandler(e)
          for (i = 0; i < ocultoElements.length; i++)
          if (ocultoElements[i] !== e.target)
          ocultoElements[i].style.display = "none";

          else
          ocultoElements[i].style.display = "block";









          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 9 at 19:21









          PinkClimbingApple

          10818




          10818










          answered Mar 8 at 23:48









          MickMick

          8715




          8715












          • This would be the easiest approach. You could significantly shorten this code by using this to reference each individual item as well.

            – Nick
            Mar 8 at 23:57












          • Do I have to remove the onclick from the html tag? <input type="submit" value="Mostrar" onclick="Mostrar()"> I remove it but it does not work for the moment :(

            – Steff
            Mar 9 at 1:28












          • Firstly, you shouldn't use the same name for the class as for the id of a element, as this will lead to confusion (for you). Secondly, if you want just certain div elements to react to a specific button click event then you should target them individually in each of those click event handlers. What I wrote was a generalization approach for what you had presented.

            – Mick
            Mar 9 at 2:01

















          • This would be the easiest approach. You could significantly shorten this code by using this to reference each individual item as well.

            – Nick
            Mar 8 at 23:57












          • Do I have to remove the onclick from the html tag? <input type="submit" value="Mostrar" onclick="Mostrar()"> I remove it but it does not work for the moment :(

            – Steff
            Mar 9 at 1:28












          • Firstly, you shouldn't use the same name for the class as for the id of a element, as this will lead to confusion (for you). Secondly, if you want just certain div elements to react to a specific button click event then you should target them individually in each of those click event handlers. What I wrote was a generalization approach for what you had presented.

            – Mick
            Mar 9 at 2:01
















          This would be the easiest approach. You could significantly shorten this code by using this to reference each individual item as well.

          – Nick
          Mar 8 at 23:57






          This would be the easiest approach. You could significantly shorten this code by using this to reference each individual item as well.

          – Nick
          Mar 8 at 23:57














          Do I have to remove the onclick from the html tag? <input type="submit" value="Mostrar" onclick="Mostrar()"> I remove it but it does not work for the moment :(

          – Steff
          Mar 9 at 1:28






          Do I have to remove the onclick from the html tag? <input type="submit" value="Mostrar" onclick="Mostrar()"> I remove it but it does not work for the moment :(

          – Steff
          Mar 9 at 1:28














          Firstly, you shouldn't use the same name for the class as for the id of a element, as this will lead to confusion (for you). Secondly, if you want just certain div elements to react to a specific button click event then you should target them individually in each of those click event handlers. What I wrote was a generalization approach for what you had presented.

          – Mick
          Mar 9 at 2:01





          Firstly, you shouldn't use the same name for the class as for the id of a element, as this will lead to confusion (for you). Secondly, if you want just certain div elements to react to a specific button click event then you should target them individually in each of those click event handlers. What I wrote was a generalization approach for what you had presented.

          – Mick
          Mar 9 at 2:01



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072396%2fgetelementsbyclassname-gets-one-element-when-it-comes-from-a-php-foreach%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived