Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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... #10072

Closed

Comments

@rickcrochet
Copy link

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>
@ImSerenityADev
Copy link

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

@erictleung
Copy link
Member

@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!

@rickcrochet
Copy link
Author

I've tried it several times, making sure code was acurate... there must be another problem

@rickcrochet
Copy link
Author

@erictleung Sorry about that but no one was answering me in the help room

@erictleung
Copy link
Member

@rickcrochet no worries. Yeah, sometimes the Help Rooms are pretty busy and getting help is difficult. Please be patient. There are many people in there that are willing to help. You can always tag me there and I get help you out when I can 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment