Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSandy Kovacic
3,958 PointsFront end web development - checking values Challenge : Create a method called 'isValidEmail' that takes one argument that returns true when a string with an '@' symbol is passed, false if not.
This code got accepted initially and then when I did the next challenge this code got rejected. Is it correct? This code appears in the smellslikebakin/contact.html page and works.
function isValidEmail(email){
return email.indexOf("@") != -1;
}
3 Answers
Jennifer Rai
Courses Plus Student 13,164 PointsHi Sandy,
I've found that there is a quirk and sometimes it says that the previous task "is no longer passing" even when the previous code is exactly the same. It means that something you did on the current task is not right.
Good luck!
Sandy Kovacic
3,958 PointsThanx Jennifer,
I had already commented out the next challenge, so that only the code from the previous challenge was left. I guess I'll start the whole challenge again.
Kind regards
Sandy
Mohammed Hossen
5,591 Pointsput that under a separate script tag maybe?
<script type="text/javascript">
function isValidEmail (email) { return email.indexOf("@") != -1;}
</script>