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

JQuery removeClass not working in code below #13885

Closed
iamingh opened this issue Mar 13, 2017 · 1 comment
Closed

JQuery removeClass not working in code below #13885

iamingh opened this issue Mar 13, 2017 · 1 comment

Comments

@iamingh
Copy link

iamingh commented Mar 13, 2017

Challenge Remove Classes from an element with jQuery has an issue.
User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36 OPR/43.0.2442.991.
Please describe how to reproduce this issue, and include links to screenshots if possible.

My code:

<script>
  $(document).ready(function() {
    $("button").addClass("animated bounce");
    $(".well").addClass("animated shake");
    $("#target3").addClass("animated fadeOut");
    $("button").removeClass("btn-default");

  });
</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 target" id="target1">#target1</button>
        <button class="btn target" id="target2">#target2</button>
        <button class="btn 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 target" id="target4">#target4</button>
        <button class="btn target" id="target5">#target5</button>
        <button class="btn target" id="target6">#target6</button>
      </div>
    </div>
  </div>
</div>
@iamingh
Copy link
Author

iamingh commented Mar 13, 2017

Please mark the above listed bug as invalid. I found the missing link.
I removed the class : btn-default from button tags, that stopped the execution.

@iamingh iamingh closed this as completed Mar 13, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant