Questions tagged as 'javascript'

1
answer

What the .js.map files are for

What is the function of the .js.map files in AngularJs , and is there a problem if the file is not included?     
asked by 22.01.2018 / 17:30
1
answer

why assign the same name to both a variable and a function?

const Hola = function Hola() { _classCallCheck(this, Hola); };     
asked by 27.01.2018 / 09:26
3
answers

Input only receive up to 8000

I need to enter an amount in an input only let me enter up to 8000 and if I put 8500 for example tell me that maximum amount is 8000. <input type="text" id="breadth1" maxlength="8000" class="form-control big" placeholder="Ingrese ancho to...
asked by 12.05.2017 / 20:55
2
answers

Select disabled

I'm trying to make only the select disabled switch on which I choose an option and do not set all the select disabled. Example: in the first select I choose B Babel only that select is set disabled $(function(){ $('.a...
asked by 24.07.2017 / 14:53
2
answers

You do not show me the tooltip

Well, that's it, I'm trying to show a tooltip in an input field and it does not show it to me, I do not know where I'm having the error. //Javascript (JQuery) $(function test() { var valor = $("#nombre").val(); if( valor...
asked by 08.02.2017 / 20:38
3
answers

Put plain text inside a label

I want to do something simple, give a rule of style to a part of a text <span id="frase">la cancion me hace recordar una sensacion</span> <script type="text/javascript"> frase = document.querySelector("#frase").innerHTML...
asked by 25.04.2017 / 01:17
2
answers

Pass value of an input to PHP

The value is sent from a page to a modal of Bootstrap in the following way by means of the data-book-id="" of the label <a></a> . <?php while($row = mysql_fetch_array($sql)){...
asked by 03.05.2017 / 21:28
1
answer

Why does accessing an array element show undefined?

Having the following array: var arrayElementos = ["elemento 1" , "elemento 2" , "elemento 3"]; We apply the length property: var arrayLargo = arrayElementos.length; And doing alert(arrayLargo); returns 3. I try to acce...
asked by 29.04.2017 / 15:59
2
answers

How to color the working hours with fullcalendar?

Dear, I have a big problem. I'm doing a reservation system for hours, so I'm using fullcalendar.io a fairly complete library. What I need to do is: How to color a light green or transparent green, certain hours of the week periodically...
asked by 04.02.2016 / 06:10
1
answer

client.js for Trello API

I am trying to use the Trello library client.js to use the Trello API in my application. On their Trello API Get Started page they have a brief tutorial on how to use it, I follow the steps, I get my < em> Application Key , but when I insert...
asked by 26.04.2016 / 19:30