question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Can someone help?? I've followed the instructions exactly, what I don't understand is if we're only targeting "#target1" using selectors '$("button")' & '$(".btn")' we're targeting all buttons...

See original GitHub issue

Challenge Target the same element with multiple jQuery Selectors has an issue. User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36. Please describe how to reproduce this issue, and include links to screenshots if possible.

My code:


<script>
  $(document).ready(function() {
    $("button").addclass("animated");
    $(".btn").addclass("shake");
    $("#target1").addclass("btn-primary");

  });
</script>

<!-- Only change code above this line. -->

<div class="container-fluid">
  <h3 class="text-primary text-center">jQuery Playground</h3>
  <div class="row">
    <div class="col-xs-6">
      <h4>#left-well</h4>
      <div class="well" id="left-well">
        <button class="btn btn-default target" id="target1">#target1</button>
        <button class="btn btn-default target" id="target2">#target2</button>
        <button class="btn btn-default target" id="target3">#target3</button>
      </div>
    </div>
    <div class="col-xs-6">
      <h4>#right-well</h4>
      <div class="well" id="right-well">
        <button class="btn btn-default target" id="target4">#target4</button>
        <button class="btn btn-default target" id="target5">#target5</button>
        <button class="btn btn-default target" id="target6">#target6</button>
      </div>
    </div>
  </div>
</div>

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
erictleungcommented, Aug 4, 2016

@rickcrochet thanks for the issue but if you get stuck or have questions with a challenge in the future, please first ask questions to the Help Room. What @qmikew1 has suggested is correct. Happy coding!

1reaction
ImSerenityADevcommented, Aug 4, 2016

methods are case sensitive. .addclass should be .addClass help is a great place for questions like this

Read more comments on GitHub >

github_iconTop Results From Across the Web

Can someone help?? I've followed the instructions ... - GitHub
Can someone help ?? I've followed the instructions exactly, what I don't understand is if we're only targeting "#target1" using selectors '$("button")' ...
Read more >
html - Targeting something which has the same class as ...
I'd like to target a button which seems to have the same class as another button. Is there a way to differenciate using...
Read more >
Target the Same Element with Multiple jQuery Selectors - Guide
You should only be targeting one element and adding only one class at a time. Altogether, your three individual selectors will end up...
Read more >
Target the same element with multiple jQuery Selectors - Snakify
Target the same element with multiple jQuery Selectors. Now you know three ways of targeting elements: by type: $("button") , by class: $(".btn...
Read more >
How do I get the robot to click on all buttons on a webpage ...
Hi I'm working on a script that will scrape health plan data from carrier websites. I need to simulate the actions that a...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found