Questions tagged as 'jquery'

1
answer

How to make an element hidden, then appear and disappear again with the scroll in Jquery

I'm doing a website and I want to make an element: 1- This hidden. 2-Appear when the scroll is greater than 900px. 3-Disappear when the scroll is greater than 3000px. I was using Jquery and the code I did is the following: $(document).ready(fu...
asked by 10.07.2018 / 04:44
2
answers

Combining two events in JQuey?

Good day to the whole community. I am quite new in this web development, and when I was doing my page I presented a problem that I do not know how to solve. I am trying to make a drop-down menu that when the event mouse-enter of the eleme...
asked by 12.07.2018 / 01:49
1
answer

Passing PHP Variable A Modal Window

Cordial Greeting. I hope you can help me with what I want to do. I have a PHP - HTML table Well, the fact is that, when I click on the pen, I opened a Modal window: What I want to do, is to pass 1 variable to the Modal wi...
asked by 22.11.2018 / 22:43
2
answers

How to add amount entered in a dynamically generated input, jquery?

the dynamic list is generated in the following way: var listado_facturas = $('.listado_facturas'); $.each(response.data, function (index, value) { $('<tr/>') .append($('<td/>').addClass('label-cell nuevo-td').text(value.NumeroD...
asked by 21.11.2018 / 05:55
2
answers

Format JSON

I want to give a specific format to a JSON that I do from PHP to then receive it in a variable in JS and fill a table with it, but I do not know how to do it. Here the JSON is created: <?php $conexion=mysqli_connect("localhost", "ro...
asked by 20.06.2018 / 19:14
2
answers

How to stop the execution of setInterval () which was executed using onLoad ()?

Hello colleagues, I have had a very annoying problem and it is as follows: I have a whole page made in ajax and jquery and I have different menus; and for example when entering the first menu, inside the HTML code I have an image with a Javascri...
asked by 23.06.2018 / 05:31
1
answer

How do I pass php array to Jquery?

I have a little problem: <?php require_once '../Controlador/HuespedController.php'; $Huesped = new HuespedController; $userdoc = '44889498'; //originalmente aqui va esto $_POST['doc'], $consulta = $Huesped->BuscarDocumento($userdoc);//...
asked by 30.05.2018 / 23:37
2
answers

Capture more than one click from a button

I have the following code. This is the HTML code. <form action="" method="post"> <div class="row"> <article class="col-lg-9 col-md-9 col-sm-9 aboutBox"> <div class="form-g...
asked by 19.07.2018 / 19:16
1
answer

for inside another for

I want to do something like this: for(var i = 1; i <= 5; i++){ let ii = i; for(var l = 'a'; l < 'z'; l++){ let ll = l; } } I want the for that is inside the other for to be executed from'a' to'z', 5 t...
asked by 18.07.2018 / 19:47
2
answers

Activate modal window with an Enter

I hope you can help me with this problem I am new and I would like to do this ... I have an input in which I enter information I value it with some conditions and depending on whether it is true that a modal bootstrap window appears. But I want...
asked by 17.07.2018 / 23:01