Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

190
Vistas
I am trying to make all classes (sometags) turn pink once I call it in javascript it has to be onClickEvent

I am trying to make all classes called (sometags) turn pink once I have an onClickEvent in javascript.

  1. sometags has to be stored in css
  2. has to be on click event.

Thank you in advance for the help.

function tag() {
  //document.getElementById("tag").onclick = someTags;
  document.getElementById("demo").style.color = "pink";

}
<style>.someTags {
  color: pink;
}

</style>
<h2 class="someTags">QUESTIONS:</h2>

<ol>
  <li id="questionOne" onMouseOver="mouseOverQ1()" onMouseOut="mouseOutQ1()">When 'mouseover' occurs on this question text, the font should become Courier.</li>
  <li id="questionTwo">When this text is double-clicked, a red double border 10px wide should appear. When double-clicked again, the border should disappear. (HINT: use rgb(x, y, z) for colours, not words.) Repeated double-clicks toggle between red border and no border.</li>
  <li id="questionThree" onclick="changeColor()">When this text is clicked the text should have a blue color. If clicked again, it should go green. Repeated clicks toggle the colour between blue and green.</li>
  <li id="questionFour" onMouseOut="mouseOutQ4()">When 'mouseout' occurs on this text, question 6 should have the text "Nothing to be done here" displayed.</li>
  <li id="q5" onclick="questionFive('chartreuse');" class="someTags">When this text is clicked, the background colour of the webpage becomes 'chartreuse'.</li>

  <li id="changeQ4" class="question6" class="someTags">Mouseover here will make the text disappear.</li>

  <li id="demo" class="someTags">When this text is clicked, change the background colour to pink of the first and third tags whose css class="someTags".</li>
</ol>

about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Try This

function pink() {
    elements = document.getElementsByClassName('someTags');
    for (var i = 0; i < elements.length; i++) {
        elements[i].style.backgroundColor="pink";
    }
}
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta
      name="viewport"
      content="width=
    , initial-scale=1.0"
    />
    <title>Document</title>
  </head>
  <body>
    <h2 class="someTags">QUESTIONS:</h2>

    <ol>
      <li
        id="questionOne"
      >
        When 'mouseover' occurs on this question text, the font should become
        Courier.
      </li>
      <li id="questionTwo">
        When this text is double-clicked, a red double border 10px wide should
        appear. When double-clicked again, the border should disappear. (HINT:
        use rgb(x, y, z) for colours, not words.) Repeated double-clicks toggle
        between red border and no border.
      </li>
      <li id="questionThree">
        When this text is clicked the text should have a blue color. If clicked
        again, it should go green. Repeated clicks toggle the colour between
        blue and green.
      </li>
      <li id="questionFour">
        When 'mouseout' occurs on this text, question 6 should have the text
        "Nothing to be done here" displayed.
      </li>
      <li id="q5" class="someTags">
        When this text is clicked, the background colour of the webpage becomes
        'chartreuse'.
      </li>

      <li id="changeQ4" class="question6" class="someTags">
        Mouseover here will make the text disappear.
      </li>

      <li id="demo" class="someTags">
        When this text is clicked, change the background colour to pink of the
        first and third tags whose css class="someTags".
      </li>
    </ol>

    <button onclick="pink()" class="someTags">Pink</button>

    <script src="app.js"></script>
  </body>
</html>

about 4 years ago · Juan Pablo Isaza Denunciar

0

Here isa solution that i think can help.

 const classElements = document.querySelectorAll(".someTags");
    const btnDemo = document.getElementById("demo");
    btnDemo.addEventListener('click', () =>
    {
      classElements.forEach(element => element.classList.add("green"));
    });
    .green {
      background-color: pink;
    }
<h2 class="someTags">QUESTIONS:</h2>

  <ol>
    <li id="questionOne" onMouseOver="" onMouseOut="">When 'mouseover' occurs on this question text, the font should become Courier.</li>
    <li id="questionTwo">When this text is double-clicked, a red double border 10px wide should appear. When double-clicked again, the border should disappear. (HINT: use rgb(x, y, z) for colours, not words.) Repeated double-clicks toggle between red border and no border.</li>
    <li id="questionThree" onclick="changeColor()">When this text is clicked the text should have a blue color. If clicked again, it should go green. Repeated clicks toggle the colour between blue and green.</li>
    <li id="questionFour" onMouseOut="">When 'mouseout' occurs on this text, question 6 should have the text "Nothing to be done here" displayed.</li>
    <li id="q5" onclick="questionFive('chartreuse');" class="someTags">When this text is clicked, the background colour of the webpage becomes 'chartreuse'.</li>

    <li id="changeQ4" class="question6" class="someTags">Mouseover here will make the text disappear.</li>

    <button id="demo" class="someTags">Button to click.</button>
  </ol>

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda