Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

280
Vistas
Ajax - change text color based on return value

I am trying to display a sensor value using html/ajax. This works as expected so far, however I want the text color to change according to the value. for example

if value < 50 then fontcolor= blue 
if value >49 then fontcolor = red

is that at all possible?

<p style="color:blue; position: absolute; top: 810px; width: 100px; padding-left: 340px;" id="ofen_VL">0</p>
<script>
setInterval(function() {
  // Call a function repetatively with 10 Second interval
getData();
}, 10000); //10sec

function getData() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("ofen_VL").innerHTML =
  this.responseText;
}
 };
xhttp.open("GET", "ofen_VL.txt", true);
xhttp.send();
}

</script>
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Add to the response your condition. Something like:

if (this.readyState == 4 && this.status == 200) {
  document.getElementById("ofen_VL").innerHTML = this.responseText;
  if (Number(this.responseText) > 50) {
    document.getElementById("ofen_VL").setAttribute('style', 'color: blue;');
  }
  else {
    document.getElementById("ofen_VL").setAttribute('style', 'color: red;');
  }
}
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda