I have an input date where I put a date and another input date where N days appear after the day I fill in the first input date, but I want the N days do not count on Sundays.
What I did until now that is easy is to increase the N days but co...
My query is as follows, I have a div teacher, where I have a form with several fields inside. The form has validations of Bootstrap inside:
$(document).ready(function() {
limpiarFormulario(frmGarantias);
limpiarFormulario(frmAsignarGar...
I have a question. I searched the web but, I could not find how it is done.
I'm seeing a system already created, but I want to modify some things.
I have an Ingreso.php page with a code that brings me the values of the database.
$siniest...
This time I have a question, I have this example object:
"pasada" : {
"09-10" : 34.11,
"09-11" : 35.73,
"09-12" : 34.03,
"09-13" : 35.85,
"09-14" : 38.75,
"09-15" : 34.07,
"09-16" : 32.46,
"09-17" : 34.57
}
W...
Recently I started with all this programming, at this moment I am making a script that transforms a decimal number into binary without using the & or the String. The error that presents me is that giving it integer values brings me closer to...
I have a problem when wanting to generate an ngFor in Angular 2
That's the code I want to insert.
import {Component , Input} from '@angular/core';
import {Tabla} from '../common/tabla';
@Component({
selector: 'table-box',
templa...
window.addEventListener("load", function(){
// Para uso
var matriz = [];
var i = 0;
for (i; i<=50; ++i) {
matriz.push(i);
}
matriz.forEach(function(e) {
document.write(e + '\n');...
I have an HTML, where when doing the event mouseover on a button, an input: text, and a p, these are hidden, and then when clicking on another p these are shown again, the problem is that the tag p I have it like this
<p id="show...
Well it turns out that I have to reverse a String in JS but the method .reverse (); It does not work in my case.
function invertir_nums(numeros, numeros_i){
numeros_i = numeros.reverse();
}
The problem is that it does not inv...