I'm doing a "start session" button that when clicked, a modal appears below it to put your data and be able to login. The issue is that I do not have much experience and I do not know how to close it. I'm doing it with HTML CSS JS and NodeJS.
Th...
I have a json and I need to be able to count how many true there is, since it says if a patient is interned or not.
{
"pacientes" : [
{
"nroPaciente": 2,
"nombre": "Anakin Skywalker",
"edad": 50...
I have this and it works for me, I skip the alert
$("#TextField").change(function(){
alert("El campo ha cambiado");
});
But now I try to make the alert jump depending on the value if it changes or not
I've tr...
I would like to pass the value of the variable visits of the document ready to the html code of <li class>
$(document).ready(function(){
visitas="active";
});
<div id="cursor">
<ul clas...
Good I have a simple form, I want to validate the fields are not empty and that the ID is not duplicated, but at the same time that those fields that are well entered are not deleted. I have the following code.
<script>...
I am collecting data in inputs with a each , when I try to add it in a variable it tells me that the name is not defined, it seems I have a syntax error.
function guardar_testimonio(){
$("#infotestis").each(function(){...
Hi, I'm new to AJAX and Jquery and obviously I'm practicing. It turns out that I have the following code.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="w...
I try to modify the way I see a website for that I change the reference of the attribute href for the one that is stored on my computer; basically it is the same file with a modification at the moment; the problem is that in doing so I co...