Questions tagged as 'ajax'

1
answer

Delete records that I have in the bbdd

function cargaPagina(pagina) { var desde = pagina * itemsPorPagina; $.ajax({ data:{"param1":"dame","limit":itemsPorPagina,"offset":desde}, type:"GET", dataType:"json", url:"Conexion_Contacto.php"...
asked by 13.09.2017 / 04:50
3
answers

execute a select sending parameters via ajax

I have the following AJAX code that passes variables from one form to another page and shows results. $(document).ready(function() { $('#form, #asigped').submit(function() { $.ajax({ type: 'POST',...
asked by 13.09.2017 / 15:09
2
answers

Receive 2 or more data by AJAX with SELECT

What I want is to be able to select the two options of the combo ( MES and ANO ) and that by means of the function onChange show me the data of the graph, I clarify that with a single data (MES) It shows me the results, but I...
asked by 20.09.2017 / 00:01
1
answer

File upload to ftp through Ajax

Good morning. I'm trying to make a form that uploads files to an FTP using PHP. The problem is that the page is reloaded when the upload is executed. I know that in order to just cool an area you have to use AJAX, but I can not execute the uploa...
asked by 16.09.2017 / 13:26
1
answer

Enter coordinates (bookmarks) in a google map

DATA: null([{"id":"0008","nombre":"FACULTAD DE CIENCIAS I","bbox":"-0.515358212377548,38.3869756882801,-0.514646718387274,38.3874205581019","count_geometrias":2098,"plantas":"{P1,P3,P2,PB,PS}"},{"id":"0206","nombre":"CENTRO INCUBADOR DE EMPRES...
asked by 15.10.2017 / 20:53
1
answer

Obtain values of a JSON per individual

Having this function: <script> function testAjax() { $.ajax({ url: 'https://dev.datos.ua.es/uapi/5QGUfP3UM6j5VXERjKvU/datasets/11/data', type: 'GET', dataType: "jsonp", success: function (d...
asked by 15.10.2017 / 17:12
1
answer

Uncaught SyntaxError: Unexpected token:

I have a problem with the following code where the answer is this: As you can see there is an answer but I get that error and it does not load me. Thanks in advance! window.onload = function() { var mb = document.getElementById("...
asked by 02.11.2017 / 21:37
1
answer

PHP activity log

Greetings to all, I have a small table where everyone can consult, edit and insert and I want to know who has made some movement but without using login rather know through the name of the pc or user of windows.     
asked by 28.08.2017 / 01:54
1
answer

The browser stops making ajax requests after 8 requests

my case is: I'm doing a login and I want to check if the user already exists in the database, it goes well, until it does it 8 times (the user is an email, so you have to write more than 8 times), then the $ method. post stops working. $(docum...
asked by 23.11.2017 / 11:50
1
answer

get the form values by ajax and pass it to a query

I have a form to filter the data to generate graphs of survey data <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"...
asked by 23.11.2017 / 20:19