Questions tagged as 'javascript'

1
answer

Save text string in MySQL

Good, I am trying to save the text that the user writes in a textarea, this text I show it later something like this:    Instructions:       Instruction 1.    Instruction 2.    Instruction 3.    What I do at the moment is to force the...
asked by 14.09.2016 / 15:07
1
answer

Problem with Select chained with Jquery

I have a logic problem with jquery, because I have a code with chained selects, in which it is assumed that a submit is activated only when the three selects are active , the first active select the second, and the second select activates the t...
asked by 24.08.2016 / 02:30
3
answers

Replace each value of a string with data from an array js

Replace each value of a string with data from an array with js or jquery var numbers = ["0:00", "0:01", "0:05"]; for (var i = numbers.length - 1; i >= 0; i--) { str = "0:00 oki 0:01".split(numbers[i]).join(""); //console.log(str); }...
asked by 27.08.2016 / 03:23
2
answers

Activators in Apps Scripts [closed]

I know that using Google Apps Script you can configure an activator, so that it runs every so often, but I would like to be able to configure it from the code. They will ask themselves why, well, I made an application for my work that has a p...
asked by 20.06.2016 / 20:40
1
answer

add dynamic rows to a table with data from another table

Good morning, I need help to do the following: I need that from a modal with a table of data (extracted from my database), they are added to another table, dynamically. This is the design of my modal, showing information from my database:...
asked by 19.06.2016 / 13:53
3
answers

How to do an input number excluding the first 0?

I have an input that only accepts positive numbers (without decimal or hyphens) but I want to exclude the first zero <input id="cantidad[1]" NAME="cantidad[1]" class="form-control" type="number" pattern="\d*"/ min="1"> <script type="t...
asked by 07.07.2016 / 00:51
1
answer

Travis CI: "UnCSS: Configuration missed" in Travis CI

I'm trying uncss-brunch with Travis in a test project . brunch build works locally, but when I do git push the build in Travis fails: 18 Apr 22:38:59 - error: UnCSS: Configuration missed. Any ideas of what may be wrongly...
asked by 18.04.2016 / 22:54
2
answers

A getElementById can be used if it exists several times but with a differentiator?

I want to know if it is possible to use the Id of an element if it is used For example we have <img id="image1" onclick="usarImagen();" class="img-responsive center-block" src="images\imagen1.jpg" alt="banner1" align="middle"/> <im...
asked by 19.05.2016 / 22:37
2
answers

Bootstrap tab panel event

I have a tab bootstrap panel with 5 interchangeable tabs (in active, fade, fade, fade, fade) Within each of these tabs is included a dxchart (devextreme) that is graphed with Jscript. When my page finishes loading, the graph that is in the...
asked by 13.04.2016 / 23:47
2
answers

I can not close a pop-up

The following code belongs to a pop-up that I am trying to close with javascript but it does not work for me and it does not give me any errors either. <div id="popup-box-outer"> <div id="popup-box"> <h1><img src="...
asked by 20.04.2016 / 20:33