Relative Content

Tag Archive for javascripthtmlfunction

deleteTask function for Todo app is not working

I’m building a todo app using js, and I’ve been trying to figure out the logic behind why my deleteTask function is not working. This is my first time building a todo app (started learning web dev this March), and after searching for similar issues online I decided to ask here.

Function is not defines when it is defines

i have an html file with a js function that is called when a button is clicked, the console says that the function is not defined when a console log from that same script works fine

Button doesn’t recognize functions

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ /> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″ /> <title>Tu Sitio</title> <link rel=”stylesheet” type=”text/css” href=”paginaUsuarioServicio.css” /> </head> <body> <nav> <a href=”paginaPrincipalUsuario.html”>Bienvenida</a> <a href=”paginaUsuarioMascotas.html”>Tu Mascota</a> <a href=”paginaUsuariosServicio.html”>Servicios</a> <a href=”paginaUsuarioAgregar.html”>Agregar Mascota</a> <a href=”login.html”>Cerrar Sesión</a> </nav> <div class=”content-wrapper”> <div id=”map”></div> <div id=”dataContainer”> <p id=”TiendasVinculadas”>Tiendas Vinculadas</p> </div> </div> <div class=”chat-popup” id=”myForm”> <form class=”form-container” action=”#”> <h1 […]