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

157
Vistas
"Uncaught TypeError: check is not a function" no typo html website

This piece of code is meant to call a function, named "check()" and return a value depending if certain radio buttons are checked, in the span element with id "ans".

<head>
    <script>
    var check = 0
    function check() { // Where the function is set
        if (document.getElementById("hig").checked) {
            check+=1
        }
        if (document.getElementById("med").checked) {
            check+=1
        }
        if (document.getElementById("low").checked) {
            check+=1
        }
        document.getElementById("ans").textContent="You got " + check + "/3"
    }
    </script>
    </head>
    
    <body>
    <center>
    <h2>What radiation does:</h2>
    <h3>Penetrating Power:</h3>
    Alpha Radiation: <span id="a"></span> <br>
    <input type="radio" name="a" id="hig">
    <input type="radio" name="a" id="med">
    <input type="radio" name="a" id="low"> <br>
    
    Beta Radiation: <br>
    <input type="radio" name="b" id="hig">
    <input type="radio" name="b" id="med">
    <input type="radio" name="b" id="low"> <br>
    
    Gamma Radiation: <br>
    <input type="radio" name="g" id="hig">
    <input type="radio" name="g" id="med">
    <input type="radio" name="g" id="low"> <br>
    
    High/Medium/Low <br>
    <button onclick="check()">Check</button> <!--Where the function is called-->
    <span id="ans"></span>
    </center>
    </body>

However, when "check()" is called, it returns the error code: "Uncaught TypeError: check is not a function".

It doesn't seem to be a typo, as what I can see so far.

Any ideas?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Your function name is the same name as the variable, just pick a new name for the function

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