Tagged Questions
1
vote
3answers
61 views
Get image src from ajax response
I'm trying to change an image source with an image path I'm getting from a php handler with ajax.
What I'm catching is: "img/blah.jpg"
This is my ajax:
$('.name').click( function() {
//var e = ...
0
votes
1answer
27 views
dojo.xhrPost server response
I get my server response using dojo xhrPost but I get back the whole site.
How can I get only a part of response let's say one div's content.
function ajaxrefresh()
{
dojo.xhrPost({
// ...
1
vote
1answer
108 views
JQuery AJAX call throws Access-Control-Allow-Origin Error
I'm working on a project where after using $.ajax to make a GET request, I receive an Access-Control-Allow-Origin error. However, the GET request is sent to the server and the response is the ...
0
votes
1answer
23 views
Remotipart getting ajax response
i am using Remotipart to upload files. The Rails-Controller handles the file but i cant figure out how to get the following ajax response. Here is my js code.
$file.children(".description").html(
...
2
votes
4answers
110 views
Ajax response data in .net
I have a asp .net web page and a button in it. I'm calling an ajax method in the button click event as follows
$("#btnTest").click(function () {
$.ajax({
type: ...
0
votes
1answer
68 views
Why is my server code ajax call returning a response wrapped in double-quotes?
I am doing an ajax call from my javascript to an aspx page's webmethod. The string I'm returning is wrapped in double-quotes for some reason. I tried stripping them out, but the replace only replaced ...
-2
votes
1answer
76 views
jQuery/AJAX mysteries [closed]
I´m stuck with this AJAX problem I can´t get my head around. Everything seems fine, except it doesn´t work.
What I´m doing is a simple jQuery.ajax GET request to my own server. Firebug and the server ...
1
vote
1answer
195 views
AJAX - get response body in success and error
I am apologize for the stupid question, but I need your help. I need to get information about response inside AJAX.
$.ajax({
type: "POST",
url: '/register',
data : ...
2
votes
1answer
77 views
PHP mail() method and response callback not working
Script below is purpose to send email to registrant and response success back to page for certain action if mailed, somehow if I added-in php mail() method, the callback response would not working ...
0
votes
1answer
85 views
Ajax Response for a JSON Data
I am using AJAX to cal my struts action class and it's storing some data in session.
public String myMethod(){
session.put("DATA", JSON_STRING); //JSON formatted string
return "forward";
}
...
0
votes
1answer
66 views
Wordpress when sending a WP_Ajax_Response the response is not received
I'm searching for days now for a solution to my problem.
When I send a WP_Ajax_Response the clientside is not receiving it.
I checked all possible tips on internet but still I can't get it working.
...
0
votes
2answers
37 views
A bit confused on how to respond to rail 3's remote link_to's…
I use rails remote => true on form's all the time. In jquery I use the 'ajax:before' and 'ajax:success' to pick up the events on the page and in the controller I do the following to respond to ajax ...
0
votes
0answers
29 views
running a JS function, echo'd by PHP that is in an ajax filled div
I have two functions echo'd from a PHP file, based on parameters posted to it by a previous ajax request.
This appears in my the response div, after executing the ajax. In the chrome element ...
0
votes
2answers
139 views
Ajax response not calling success:function() when using jQuery 1.8.3
Ajax response not calling success:function() when using jQuery 1.8.3 but the code is working perfectly with jQuery 1.4.2.
Here the code:
<script type="text/javascript">
...
2
votes
2answers
125 views
jQuery AJAX replaces submitted form with form (good), but it wont submit a second time
Im using a loop in PHP to display the data for users in the admin section of a CMS. Each row (user) includes a few icons that I want to connect to commands (ex: edit, delete, etc). The last row of ...
0
votes
1answer
103 views
Ajax request delay 1 second
This time my problem is delay between ajax request, and php file response.I have checked it out with google chrome statistics, and it shows almost always exact 1 second wait time every time function ...
0
votes
0answers
117 views
Response.write inside updatepanel inside multiview
This does not work... In ie if i "open" the file i see the aspx page rendered html
and when i "save" the file and open it from local folder it works fine.
Why is it so?
When i try to open the ...
1
vote
1answer
101 views
PHP echo always goes to JQuery $.ajax error block
First off - no, this is not a cross site request issue. The Javascript and PHP are coming from the same server.
Here is the Javascript code.
var form_data = {
email: email,
password: ...
0
votes
0answers
82 views
Getting a JSON error response from file uploading
I have been struggling with a JSON error for some time now. The code I currently have for the uploading is,
addFile: function ( e ) {
if (e.files) caller = e; else {
caller = ...
0
votes
1answer
46 views
Mootools Response in variable
I tryed tu put the ajax response in a variable tu use it later but it's not work
this is my code
var retourn;
var requestData = new Request ({
url: 'dnscheck.php',
async:false,
...
0
votes
1answer
91 views
ajax xmlhttp response is null - javascript
Here is my code:
<script type="text/javascript">
var xmlhttp;
$(document).ready(function (){
...
2
votes
1answer
82 views
i want to display a success image after filling up each text fields or selecting the categories using ajax or jQuery
Here is what i have done ..i want to display the image after input fields is fill up the first field is working now how to add extra input fields to display that particular image on that input fields ...
3
votes
1answer
454 views
Python and AJAX - HTTP Response
I'm trying to answer an ajax-request with a python script. The ajax-request sends a json-object just like follows:
$.ajax({
url : "cgi-bin/mycgi.py",
type : "POST",
data : ...
0
votes
0answers
134 views
Ajax Response nsresult: “0x80004005 (NS_ERROR_FAILURE)”
I have An Error in Ajax Response
[Exception... "Failure" nsresult: "0x80004005 (NS_ERROR_FAILURE)" :: line 6" data: no]
while Ajax Call Response From UI
0
votes
1answer
162 views
Render content without layout from a rails form with remote => true
I got a form to mark a task as completed:
<%= simple_form_for task, :html => { :class => "check-task", :id => ("task" + task.id.to_s) }, :method => :put, :remote => true do |f| ...
0
votes
0answers
22 views
Handling update failure
I have a form which sends the value of a text field via ajax to a controller. The controller attempts to update the domain object but validates the user input first. Say that the validation fails (an ...
0
votes
2answers
45 views
Timing issue of passing JSON object between functions creates error
My function below makes and AJAX call and since it is an invalid JSON object returned I have to manually parse the results into a valid JSON object (which works). The problem is when I am passing the ...
0
votes
1answer
690 views
I can't parse a Jquery ajax JSON response
I am trying to parse the JSON results from an AJAX call, but do to the limitations of the server I am only able to get one large string. There are several elements returned, but the data I need to ...
0
votes
1answer
144 views
$.ajax in wordpress - Slow and not caching
I'm having troubles with a script, related to wordpress and ajax.. I think it loads really slow, and if I click a clicked link, it takes the exact same time (not caching)
What I'm doing is, loading ...
1
vote
1answer
176 views
Send ajax request and got response with prototype.js
I try to send to httpbin request with prototype.js
My code:
function loadTest()
{
new Ajax.Request('http://httpbin.org/get', { method:'get',
// success request
onSuccess:
...
1
vote
2answers
1k views
Extjs JSON response
I have a form, which sends data to the server. I process the form with a PHP script, which can return 3 differents JSON strings:
One
exit("{\"success\":\"false\", \"msg\":\"Las claves no ...
3
votes
3answers
108 views
$_POST persistency using an AJAX call
I am trying to set up a comment system, in which when the users sends the comment it is displayed on their screen as if it were already stored on the database.
My question is: what would happen if the ...
0
votes
2answers
110 views
Is response to Ajax call different from that of to full postback
When I try the following code with a postback the file download takes place normally:
FileInfo file = new FileInfo("C:\\a.txt");
Response.ClearContent();
Response.AddHeader("Content-Disposition", ...
0
votes
2answers
243 views
JQuery Ajax Error Text
I would like to set the error message on Ajax error operation from Java Servlet.
request.setAttribute(BreezeWebConstants.ERROR_MESSAGE, errMsg);
response.setStatus(HttpServletResponse.SC_FORBIDDEN);
...
0
votes
2answers
76 views
What should be a safe, secure, correct server side password validation response?
I am trying to implement a page where the staff can login and add, modify, update work cases.
I have a select list with data (staff names) loaded from a DB. In this DB I have the basics, username, ...
0
votes
1answer
307 views
Check if youtube video id exists Javascript
I am having the following code where realurl = 'TOwd30wXc-0' (youtube video ID):
$.ajax({
url: "http://gdata.youtube.com/feeds/api/videos/"+realurl+"?v=2&alt=json-in-script",
...
1
vote
1answer
1k views
handle ajax request and send response java servlet
I have an ajax request function (written in JavaScript) and Java Servlet that handles this request. I need to get all request parameters and if it succeeded then send back a confirmation that it has ...
0
votes
1answer
179 views
How to parse multi-part response in dojo
I am working on dojo1.7. I want to parse multi-part response which i am getting from ajax return. How to do it? Can somebody suggest me?Thanks in advance!
0
votes
1answer
118 views
jsonp, crossDomain:true success undefined response
Again, I'm at the limits of my ability.
I'm using jsonp in jQuery ajax to get around the unsecured/secured on the same page restriction.
I've discovered that supplanting jsonpCallback for success ...
0
votes
1answer
156 views
Javascript Functions Confusing AJAX Responses from CGI Request/Response
I have 3 Javascript functions called from the body onload in the HTML page.
Each Javascript function is contained in it's own Javascript file. Each Javascript file corresponds to another CGI script ...
0
votes
1answer
173 views
Mixedup ajax response on mutliple Form.Request mootools
I have 2 Form.Request in 2 functions that are executed on 2 different buttons clicks
here is fiddle
http://jsfiddle.net/RtxXe/38/
seems like I did not set the events in right order in my functions ...
1
vote
1answer
1k views
How do I get the response time from a jQuery ajax call?
So I am working on tool that can show long a request to a page is taking.
I am doing this by using jQuery Ajax (http://api.jquery.com/jQuery.ajax/) and I want to figure out the best way to get the ...
1
vote
2answers
247 views
How to put echo response (text) in alert box via ajax?
i'm new to php and ajax and i`m trying to send a php form data via ajax (without the reflesh) and display the echo msg of the php on an alert box via ajax sucess, but it didnt work.
The code goes like ...
0
votes
1answer
351 views
XDomainRequest not giving response while status is 200
XDomainRequest not giving response while status is 200
var httpRequest = new XDomainRequest();
httpRequest.open('POST', url, true);
httpRequest.send(xmlDocument);
alert(httpRequest.responseText);
...
0
votes
0answers
143 views
Error 500 - Ajax Response (No details on client but works on localhost)
I'm currently working on a change of password exception handling on server side. So, if the change of password throws an exception on server side (i.e. new password does not fulfill the security ...
-1
votes
1answer
163 views
Ajax responsetext as a table output?
I'm not really familair with Ajax Response - I have edited the PHP Ajax Search code from W3schools.com as follows :
<?php
require_once('connect_db.php');
$query = "select item_no from items";
...
1
vote
1answer
66 views
What's the correct way to set up an AJAX workflow response handler in an Aviarc screen?
Say I have a screen like this:
<screen>
<button label="Foo" name="foo-button"/>
<action:behaviors>
<action:when widget-event="foo-button.onClick">
...
0
votes
1answer
110 views
response.stream and web2py_component: Not able to stream file as attachment
I want to stream a file as an attachment in the response. I have this function:
def form_query():
response.flash = str(request.args(0))
response.generic_patterns = ['load']
...
0
votes
2answers
379 views
Jqgrid dynamic combo box population not working
I am trying to dynamically populate an inline combobox in the JQqgrid. The ajax request is sent to the "dataUrl" parameter however I am unable to set the response successfully to the combobox. Neither ...
3
votes
1answer
424 views
How to reload the entire page from an ajax response?
I have a web page generated with php with a form placed within a div. The form is submitted using Ajax and validated on the server side. If there is an error, the contents of the div is replaced with ...




