Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

141
Views
Background Error fault when applying condition

So if x = Number value background changes fine, my question is when x has no value. How can I have a background-color of #ffffff. Currently, code is defaulting to #db0000.

Snip of HTML code

JS:

var grid_value = document.getElementById("Vone").innerHTML;
var x = grid_value;
            
if (x >= 0 && x < 15) {
  document.getElementById("GridA").style.backgroundColor = "#db0000";
} else if (x >= 15 && x < 25) {
  document.getElementById("GridA").style.backgroundColor = "#f0ad4e";
} else if (x >= 25) {
  document.getElementById("GridA").style.backgroundColor = "#5cb85c";
} else if (x = "Pick" ) {
  document.getElementById("GridA").style.backgroundColor = "#0085eb";
} else if (x = "" ) {
  document.getElementById("GridA").style.backgroundColor = "#ffffff";
}
about 4 years ago · Santiago Trujillo
2 answers
Answer question

0

Here you haven't given any conditions if x doesn't have a value, so the default condition is x=0. You should try else if (!x).

else if (!x) {
  document.getElementById("GridA").style.backgroundColor = "#ffffff";
}

Hope this helps you out.

about 4 years ago · Santiago Trujillo Report

0

const gA = document.getElementById("GridA");
document.getElementById("Vone").addEventListener("blur", function(event){
  gA.classList = "";
  var x = this.value;
  if  (x === "") {
    gA.classList.add("white");
  } else if (x === "Pick") {
    gA.classList.add("color1");
  } else if (x >= 0 && x < 15) {
    gA.classList.add("color2");
  } else if (x >= 15 && x < 25) {
    gA.classList.add("color3");
  } else if (x >= 25) {
    gA.classList.add("color4");
  } 
});

            
#GridA { height:100px; border:1px solid grey; margin-top:5px; }

.color1 { background-color:#dbf000; }
.color2 { background-color:#f0ad4e; }
.color3 { background-color:#5cb85c; }
.color4 { background-color:#0085eb; }
.white  { background-color:#ffffff; }
<input id="Vone">
<div id="GridA"></div>

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!