Tagged Questions
The responsetext tag has no wiki summary.
4
votes
5answers
3k views
Why is my jQuery.ajax response empty with Django
I'm trying to return a JSON response from a Django view call via an ajax call like below:
var tab = 'test';
var response = $.ajax({
url: "/" + tab + "/"
}).responseText;
alert(response);
Here ...
3
votes
1answer
210 views
How to get the response string from Inputsource or InputStream in given code?
This code is used for parsing the xml response from server. How do I get a readable xml response string.
URLConnection connection = (HttpURLConnection) url.openConnection();
connection.connect();
...
3
votes
0answers
482 views
Valums file uploader xhr returns status 0, readystate 4 and responseText empty
I am using valums fileuploader in asp.net web application. It's working fine with the actual uploads as such. But the error condition checking is not working properly in Chrome and FF. The uploader ...
3
votes
2answers
474 views
Comet, responseText and memory usage
Is there a way to clear out the responseText of an XHR object without destroying the XHR object?
I need to keep a persistent connection open to a web server to feed live data to a browser. The ...
2
votes
1answer
104 views
impossible to get the responseText when 400 error
I'm working on the connection between a front-web and a rest service.
I succeeded to make a cross-domain Ajax call but i'm still having a little problem.
Impossible to receive the responseText when ...
2
votes
1answer
317 views
AJAX responseText is undefined after GET request to .php
I'm trying to pull a list of devices from a mySQL db, which I then format into an html select/option element in my .php and then I echo the string of html to insert into my main page, but it won't ...
2
votes
3answers
255 views
Difference between eval and window.json.parse for a dealing with a responseText?
I have the following code at hand
var finalCompleteData = eval("("+jsonresponse.responseText+")");
When I used this, I received a security flaw error in Fortify saying that it might lead to ...
2
votes
2answers
1k views
Ajax - responseText working but responseXML null
I am trying my first AJAX and having a problem with my xml receiving function.
I alert responseText and I can see the xml returned from my server, but when I try and get responseXML I get null and ...
2
votes
2answers
429 views
jQuery Ajax How Do I Pass responseText as variable to indexOf?
I am trying to append a p element from the responseText of an Ajax request.
Before appending, I would like to see if the responseText already exists in the parent div element text, and not add it ...
2
votes
7answers
34k views
jquery ajax get responsetext from http url
Neither:
var response = $.ajax({ type: "GET",
url: "http://www.google.de",
async: false,
success : function()
...
1
vote
1answer
40 views
Ajax function only working with alert()
I'm trying to get AJAX to read a text file(which works) but it will only display the responseText if I have an alert() in the function(which I don't want).
Is there a way to get it to displa the ...
1
vote
1answer
56 views
In VBA after automated xml form post, how can I automate interaction with the response?
I am using xml in VBA. The code below adds an item to a shopping cart on a remote website (posts a form). Then the code displays the result in Internet Explorer.
You can see in the response there ...
1
vote
0answers
52 views
Ajax response text correct but not displaying
i tried finding this problem using google but no luck so far , so im asking for some help.
im working with a webpage on JSP and im having a little problem with ajax responseText, im testing the page ...
1
vote
2answers
42 views
how to get only data from responsetext
i use mootools to get response from a webservice
onSuccess: function (responseText) {
alert(responsetext);
}
as answer i get
<?xml version="1.0" encoding="utf-8"?>
<int ...
1
vote
1answer
371 views
ajax from Chrome-Extension proccessed, but receive responseText=“” and status=0
I am writing a google-chrome extension, that needs to make ajax requests to a server, send some data, and receive some data back. My server is Tomcat 6.0, running on localhost.
I am able to receive ...
1
vote
3answers
259 views
Javascript AJAX responseText problem in IE
I'm trying to create a sort of chatbox system with PHP/MySql and AJAX but I'm having difficulties running my script in IE. I tested it in Google Chrome and it worked just fine. But when I test it in ...
1
vote
2answers
711 views
XmlHttpRequest.responseText result?
I am new to JavaScript. I need to test the output of XMLHttpRequest.responseText on a given URL. What is the simplest way to do it?
Please help!
EDIT: Adding more details
var url = ...
1
vote
4answers
128 views
javascript: how to fetch the content of a web page
In JS is it possible to fetch the content of a web page assigning it to a variable?
For example, why the following toy code does not work?
var req = new XMLHttpRequest();
req.open('GET', ...
1
vote
2answers
202 views
Showing JSON in html with javascript
i am new with JSON. I am using a api which using JSON for response. I am calling the api url by simple xhr method. The code is working and i am getting 200 status but
how do i able to retrieve the ...
1
vote
2answers
679 views
Why can I not return responseText from an Ajax function?
Here is part of my Ajax function. For some reason that I cannot figure out, I am able to alert() responseText but not able to return responseText. Can anybody help? I need that value to be used in ...
1
vote
2answers
540 views
Ajax - How Do I Populate a Hidden Field?
I'm new to Ajax. I'd like to populate a hidden field on a form with a responseText from the server. I'm able to display the responseText in the HTML as an innerHTML. I'm just unsure how to populate ...
1
vote
1answer
200 views
Blank responseText in XMLHttpRequest when running in custom protocol in FireFox?
I am writing a FireFox add-on that displays webpages from my server as control and info panels. These panels were written and work in regular URLs, but when I try to access them through a custom ...
0
votes
2answers
49 views
Jquery Ajax find(“p”) in responseText
I would like to isolate a part of my responseText in Jquery and Ajax.
$.ajax ({
url : "/controller/action",
complete : function (xhr, result)
{
if (result != "success") return;
var ...
0
votes
0answers
24 views
request.responseText?
I creating different responses with dependence of request.responseText.
For example i have situation like this:
request.onreadystatechange = function () {
if(request.readyState == 4) {
...
0
votes
0answers
23 views
ajax JSON dump as array
I have a simple ajax script which returns a json dump from the server:
var request = false;
try {
request = new XMLHttpRequest();
} catch (trymicrosoft) {
try {
request = new ...
0
votes
0answers
22 views
IE does not shows Arabic chars
The following program is looking up an Arabic word in a dictionary.
The real program runs on all browsers except IE.
The small example below can be run on Chrome - if invoked with ...
0
votes
1answer
50 views
unable to test AJAX ResponseText
My PHP code responds to AJAX call with different strings, depending ... so I want to test the response, but I haven't been able to do it. I found that the responseText was of undefined type so tried ...
0
votes
2answers
60 views
Select an Option based on req.responseText
I don't know if I am just thinking too hard about this or what. I just want to be able to select a specific option based on the result I get from a call. Currently call produces City, State, Country ...
0
votes
0answers
29 views
Returning the responseText from ajax function
See the following function I have written
The code is to receive a url and send data to that page in post/get method.The function returns responseText from the target page
function ...
0
votes
4answers
156 views
responseText contains extra whitespace characters (new lines, line feeds), how to prevent and remove them?
I have an ajax script that calls a php file.
The php file echos "yes" or "no", I want to use the strings to do logical comparisons.
In the javascript, I want to compare the string in the ...
0
votes
2answers
305 views
Not able to parse xmlHttpRequest responseText in a firefox extension
I am building a firefox extension and in the extension I am making a ajax request which returns me a responseText, now I want to parse the responseText in the js but I am not able to parse that ...
0
votes
0answers
239 views
How to find a particular DIV by name or id in xmlhttp.responseText of XMLHttpRequest
here my code-
function doCall() {
try {
//callBack;
var url = "AutoRefresh.aspx";
var date = document.getElementById('<%=txtSelectDate.ClientID ...
0
votes
2answers
546 views
simple Ajax (local): responseText is empty
I've tried to use an example from a tutorial, but the response text is just empty. If I try with 'alert' I get OK, but with the responseText, the popup is just empty, nothing in it. Why is this?
...
0
votes
1answer
566 views
Calling ASMX WebMethod from jQuery - responseText is blank xhr.status = “error”
Am completely flummoxed.
jquery v1.5.2 Firefox 3.6.16 ASMX
List item
Web service written in VS 2010, .Net Framework 3.5
Hosted on local computer's VS 2010 Development web server OR ON
Main web ...
0
votes
2answers
223 views
Ajax response as DOM object
Is there a way to get a response from the typical ajax function so that it can be dissected with getElements? I've tried query.responseText.getElementById but it works just as bad as it looks. You ...
0
votes
0answers
281 views
Problem with AJAX and Chrome
Code for creating XHR object:
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest(); //For Chrome
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); ...
0
votes
0answers
88 views
Capture the text response to a variable from a cgi page request
Can anyone share some ideas of how I can capture the text response into a variable from a cgi page request? This involves a payment processing service (CCBill) that we can query on hourly basis by ...
0
votes
3answers
618 views
store XMLHttpRequest.responseText as variable :(
<script language="javascript" type="text/javascript">
try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
} catch (e){
// Internet Explorer Browsers
try{
...
0
votes
2answers
393 views
PHP Echo Function Won't Output into HTML Div with use of innerHTML
Here is the HTML/JS Code:
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new ...
0
votes
3answers
1k views
Assigning jQuery ajax response text to variable constanty returns null
hopefully one of you on this great site can help. I'm having issues with assigning a variable to a jQuery ajax call response text.
I have a form which when submited runs my "checkemail" function to ...
0
votes
1answer
369 views
Need the responseText of jQuery.ajax returned instead of using the 'success' function
I would like to have a function that returns the repsonseText of a jQuery.ajax() call. All the examples I've seen say to use a 'success' function to handle the returned data. However, for my ...
0
votes
1answer
359 views
XMLHttpRequest over SSL doesn't return any data
I'm trying to use XMLHttpRequest over SSL for a login system. Currently, I'm just testing the capabilities of XMLHttpRequest over SSL to make sure it indeed works. So here's what I'm testing:
...
0
votes
1answer
220 views
Ajax or JavaScript: Changing Style According to Server Response
Hey, I'd like to change the font color or the responseText based on the result. For example, if the responseText is NOT FOUND, I'd like to font color to be red. Otherwise, it will be black. It's ...
0
votes
1answer
570 views
Cant use any string functions on xmlhttp response text in VBScript
I can't do anything with the response text from the below code other than print it to the screen. I want to use an if statement to check what the response text is,but whenever I try this it prints ...
0
votes
2answers
485 views
Ajax: Change responseText font color based on result
Programmers here have been extremely helpful in resolving issues for me in the past, so I thought I'd ask an Ajax question. It's probably a simple fix, but I'm new to Ajax.
What I'd like to do is ...
0
votes
2answers
114 views
cleanup newlines in responseText
I found the following code in one of the pages I have to maintain;
document.getElementById('dummy').innerHTML = httpRequest.responseText;
return document.getElementById('dummy').innerHTML;
...
0
votes
1answer
712 views
Prototype Ajax.Updater Response OK, but not showing up in FF. working in Safari
I've got a quite strange problem here.
I'm calling some simple code via Ajax.Updater:
new Ajax.Updater('load','http://myurl.com/demo.pl?key=demokey¶m1=xyz¶m2=abc',{
method:'get',
...
0
votes
4answers
3k views
Servlet --x--> Ajax: Ajax code not receiving servlet response
I'm unable to figure out what is going on here in this ultra simple example.
Problem Summary: I have a simple servlet that appears to run just fine if I drive it manually... by issuing its URL from ...
0
votes
3answers
941 views
Why can't I set a variable equal to an XMLHttpRequest's responseText value?
If I am within my XHR's onreadystatechange function, I can easily do document.title = xhr.responseText, but if I make the function return the responseText, I can't set a variable equal to my XHR's ...