Questions tagged as 'ajax'

3
answers

Limit for uploading files

I have a project in Asp Net MVC .NET Framework 4 as follows: View: <div class="file-content"> <label class="custom-file-upload"> <input type="file" id="importar-arquivos" multiple accept=".pdf" name="arquivo" re...
asked by 30.09.2016 / 14:52
1
answer

error: Object {readyState: 4, responseText: "", status: 200, statusText: "OK"}

I have an AJAX request that returns certain data from my database when the user filters some information, sometimes the filters work 100%, but sometimes it returns within the error of the request the following message: Object {readyStat...
asked by 23.01.2017 / 18:17
1
answer

Error in ajax when sending by mobile

Good evening, I have the following ajax: jQuery('#form-contato').submit(function(){ var nome = $(this).find('[name="nome"]').val(); var email = $(this).find('[name="email"]').val(); var assunto = $(this).find('[name="assunto"]'...
asked by 10.12.2016 / 05:02
0
answers

PHP + Ajax Data Return

Hello, In my system I want the user to select the data present inside the dropdowns and click confirm, the value selected goes to the document filtraDashboardGeral.php , with a PHP function does SELECT in my table, returns the re...
asked by 06.12.2016 / 17:52
0
answers

Error retrieving json information with ajax

I'm doing a JSON request, which returns me the results, but not the date, but rather the ajax error. var url = window.location; var id = url.toString().split("=")[1]; var msg = ''; $.ajax({ type: 'POST', url: 'load-data.php?id='+id,...
asked by 15.12.2016 / 13:03
0
answers

How to redeclar a function after loading new content with Ajax?

I need to assign to new elements loaded via an ajax request this function bloginfos () . Is there a more elegant and professional way in my code to do this? $("#frm_busca_projetos").on("change", function(){ var termo = $("#termio").val();...
asked by 21.11.2016 / 02:56
0
answers

Is it possible to capture data from the html generated by Ajax from an external URL?

Scenario: I am trying to capture the text of a certain div of a site, however this div seems to be generated with Ajax . When I inspect the element directly on the page through the browser debugger, I see the div, but when...
asked by 24.11.2016 / 04:06
0
answers

Capturing variable ajax using php

I have the following ajax: $(".select").change(function() { var select = $("#selectAparelho").val(); $.ajax({ async: false, type: "POST", url: "administrador.php", data: aparelho = select }).done(function (data) { console.log(apa...
asked by 15.12.2016 / 16:45
0
answers

Get content from a captcha or fill out an external site form

Good morning of stackoverflow. I'm going through a problem that I can not see the light of solution. I have the following situation: I'm working on a portal, and this portal, I needed to send information to the site in our headquarters. So, it d...
asked by 16.12.2016 / 13:18
0
answers

Retrieve link generated by an ajax

Good morning guys. I'm doing a send of data to the other domain, using, ajax + php. But I need to make this generated link open, so they can send the site data, because of the captcha. $.ajax({ url: "webproxy.php?url=" + enco...
asked by 12.12.2016 / 12:34