Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sandy 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>