Target Elements by ID Using jQuery2

I cant seem to get past this step. Here is a screenshot.

First of all, in the future, please cut and paste code instead of pics. A link to the problem and letting us know what test you failed is nice too.

But looking at your code, I see the line:

    $("#target3").addClass("animated fade0ut")

Do you see the problem? This is an easy mistake to make. Look at the “0” in “fadeOut”. It’s supposed to be the letter “O”, but you have the numeral “0”.

do the following change.

    $("#target3").addClass("animated fadeOut");