Questions tagged as 'ajax'

3
answers

Delete ALL nodes children of a div

I am developing an application and I have encountered the following problem: By pressing the "Analyze" button, I dynamically create JavaScript with different div containing their own table with data. The problem arises that pressing...
asked by 10.04.2018 / 22:37
1
answer

How to invoke a web service published on a service bus through AJAX? [closed]

I am working with Oracle Service Bus , I have currently created some services with SOA in JDeveloper , which I have published in bus service offered by Oracle , now I need to access them from my mobile application made in PhoneGap . Does...
asked by 11.11.2016 / 21:07
2
answers

Problem with Recursive Ajax

I have an ajax function which is recursive, which means that it returns me an answer and if it returns a code I'll call it back to itself sending the code it gave me back, and so on until I return it in the code the value of -1, there ends the r...
asked by 29.04.2016 / 17:21
1
answer

Consume WCF service with Ajax

Hello community I have a service WCF that is published on a server X, I need to consume a method of that service through AJAX , the service method receives as parameter an object with two properties, the way in which I'm consuming t...
asked by 06.07.2017 / 18:27
4
answers

405 (Method Not Allowed) In Search ajax laravel

I'm trying to do a search with AJAX and it says 405 (Method Not Allowed) . I do not know what I can be, I tried looking at the routes and I can not find the error. My AJAX <script type ="text/javascript"> $(document).read...
asked by 24.01.2018 / 09:59
4
answers

AJAX does not send data to PHP

is my first time using AJAX, for more examples that I put into practice, I can not make AJAX send PHP a variable, instead if it communicates with the PHP file, but when I give alert(data); I get the html from my page .php, instead of show...
asked by 20.07.2017 / 17:51
2
answers

Calling Ajax does nothing

I have the following code, but when I click on the "Next" button, nothing happens, I can not find what my error would be. javascript $("#btnSigModif").click(function(){ $.post("../Logica/getdataCargarDatosPreIns.php", {"NroSol":$("#N...
asked by 12.06.2016 / 02:05
2
answers

problems reading ajax array

What am I doing wrong? I am making a ajax request that returns me as callback this type of array or object [{"nombre":"Kabul"},{"nombre":"Qandahar"},{"nombre":"Herat"},{"nombre":"Mazar-e-Sharif"},{"nombre":"Otra"}] At the time o...
asked by 01.11.2018 / 01:41
2
answers

Can ajax calls overload a server?

I am developing an application that has some elements of the database, so I have to make ajax calls for each component, I have about 50 tables which have brands, models, product types, etc. It is so to do it in a SPA I call all those elements...
asked by 16.09.2016 / 23:06
2
answers

Assign value to a returned input from a controller

I have this script in my view $(document).ready(function () { $("#PlanVenta").change(function () { $("#Precio").empty(); $.ajax({ type: 'POST', url:'@Url.Act...
asked by 31.08.2016 / 20:44