"3D Art with Maya LT " was retired on August 1, 2018.

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 trial

JavaScript Regular Expressions in JavaScript Validating a Form Form Validation

I am trying to complete the final question on the regex tutorial but it continues to yield an error.

I am trying to complete the final question on the regex tutorial but it continues to yield an error.

I was using:

const hexRegEx = /^#?(([0-9a-fA-F]{2}){3}|([0-9a-fA-F]){3})$/.test(text);

What am I doing wrong?

Sincerely, Daniel

app.js
// Type inside this function
function isValidHex(text) {
  const hexRegEx = /^#?(([0-9a-fA-F]{2}){3}|([0-9a-fA-F]){3})$/.test(text);
}

const hex = document.getElementById("hex");
const body = document.getElementsByTagName("body")[0];

hex.addEventListener("input", e => {
  const text = e.target.value;
  const valid = isValidHex(text);
  if (valid) {
    body.style.backgroundColor = "rgb(176, 208, 168)";
  } else {
    body.style.backgroundColor = "rgb(189, 86, 86)";
  }
});
index.html
<!DOCTYPE html>
<html>

<head>
    <title>DOM Manipulation</title>
</head>
<link rel="stylesheet" href="style.css" />

<body>
    <div id="content">
        <p>Enter a valid hex value below to make the screen turn green.</p>
        <input type="text" id="hex">
    </div>
    <script src="app.js"></script>
</body>

</html>

2 Answers

OK, got it now....Treehouse really should change the "ask for help" process to allow us to check existing forum posts before being required to ask our question. I can often solve my own questions by reading others' posts.

function isValidHex(text) {
  const hexRegEx = /^#[a-f 0-9]{6}$/i;
  return hexRegEx.test(text);
}
Rich Donnellan
MOD
Rich Donnellan
Treehouse Moderator 27,696 Points

Hey, Daniel!

Awesome job solving your own issue! As for allowing students to check the existing questions, this is something we have already suggested to Treehouse staff. It's on a long list of features to implement to the Community. We feel your pain! :)

I reformatted your question and answer with the appropriate Markdown syntax for the code snippets.

Cheers!