Questions tagged as 'jquery'

1
answer

Pass xml with ajax to php

Hello Good afternoon friends, see if you can help me: I have a function in jquery that creates a xml in a variable (I do not save it to disk) and that variable I want to pass it via ajax to server php and receive i...
asked by 04.05.2018 / 20:30
2
answers

.append from Jquery loses me the lines and leaves everything followed

You see, I have a JSON with many records and I want to show it on a web page. To add it to an HTML use .append () Jquery. It works well, it adds all the records and it takes well the styles and everything, but I see a behavior that I do not k...
asked by 03.05.2018 / 09:31
1
answer

Problem filling in input with data from a select

I am trying to fill a input according to a data that I choose from a select , I do it using AJAX and PHP . This is my code: <select id="pro" name="plan" class="form-control"> <option readonly>Elegir Plan&...
asked by 16.02.2018 / 21:05
1
answer

Progressbar with jquery in queries using ajax

I am in a form where I make a query by date, those parameters are passed by ajax, what it does is pass it to a controller to generate a list. It would be something like this: $.ajax ({ url: './consultar', type: 'get', data:{fechadesde:$...
asked by 24.03.2018 / 13:25
1
answer

Events with drop-down lists

How to make an "event" occur when you choose an option of select name="SistemasOperativos" and from this select show another list.  that is: name="ClasificacionWvista" , name="ClasificacionW7" or name="Clasif...
asked by 09.03.2018 / 23:24
2
answers

How to change the value of find in a table with a popup?

I have the following problem, I open a popup window. pressing the save button updates the current tr of the table. This does it very well with this: parent = linkObj.closest("tr"); parent.find('td, th').css('backgr...
asked by 13.03.2018 / 01:37
1
answer

Skip a setInterval

$(function(){ var i = 0; var myVar = setInterval(function(){ $('#numero').html(i); i++; }, 5000); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <di...
asked by 06.04.2018 / 02:52
1
answer

Make several AJAX calls and fill a Datatable with these calls

I'm trying to fill a Datatable with the 87 Star Wars characters, for this I'm doing Ajax calls and I put them in the Datatble, the problem is that the API pulls ten characters using a JSON for each url and I can use rods called to get the 87, wh...
asked by 05.04.2018 / 16:52
1
answer

How do I read a .txt file in javascript line by line?

Good, I have a text file with several possible passwords saved like this:    0 00 000 1 11 111 123 There are many more but it is to teach where the shots go. I do not know how to read it line by line and compare it with the passwor...
asked by 21.11.2017 / 15:48
2
answers

Fill a html table from Javascript dynamically

I have this div in my HTML:        Changes made:    and I'm going through a Javascript object, and I want to add some rows with the content of the Object, which is dynamic, the code I have is the following: function pedirDatosTexto(...
asked by 28.04.2018 / 12:59