The code is correct, but it keeps saying 'text isn't orange'

Tell us what’s happening:
The last two or three tests I’ve done have done the same thing. I input the line of code, hit test, and it will tell me that X needs to be Y. The problem is, X is Y, yet the test keeps saying it’s not.

In this test, it wants me to make the text in the right-well orange. It is. Yet the test keeps saying it needs to be orange. I checked the hint to see if I was wrong. Copied the code and pasted it directly into mine… still not passing.

Is FCC just having a moment?

  **Your code so far**

<script>
$(document).ready(function() {
  $("#target1").css("color", "red");
  $("#target1").prop("disabled", true);
  $("#target4").remove();
  $("#target2").appendTo("#right-well");
  $("#target5").clone().appendTo("#left-well");
  $("#target1").parent().css("background-color", "red");
  $("#right-well").children().css("color", "orange");
});
</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>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36.

Challenge: Target the Children of an Element Using jQuery

Link to the challenge:

Your code is passing for me.

Make sure you do not have any browser extensions running that are interfering with the tests. You can try Chrome in a new private window or if that doesn’t work try in Firefox just to test.

1 Like

OMG Thank you, I was starting to think I was going loopy.

Seems that adblocker for Chrome might’ve been causing the issue. I turned it off and instantly passed.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.