0
votes
0answers
19 views

about Jquery and fushioncharts and ie

I have a question with javascript, this is the index_main.asp <frameset rows="*" cols="25%,75%" id="body1" frameborder="NO" border="0" name="TopMain"> <frame name="Left" ...
2
votes
2answers
96 views

Express/Node.js : Render custom javascript as response

In my application, I need to provide an API (something like the Google Maps javascript API), through which I can send some custom javascript (with some session and request related information) as the ...
0
votes
2answers
34 views

Strange JSON response (“ ”=> ,) in rails app

I'm getting a json response from the forecast.io api with JSON.parse(open("https://api.forecast.io/forecast/api-key/latitude,longitude").read) And it looks like this {"latitude"=>58.5942, ...
-1
votes
1answer
20 views

Result appears in firefox console but not in browser

I have a javascript/jQuery/PHP/mySQL application that has a bug that I've yet to find. What happens is the response from the submit of a form is visible in the "console" window of firebug but not the ...
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 ...
0
votes
1answer
111 views

unable to read cookie javascript

I am setting cookie server-side, using java code response.addCookie("test1","test1"); I found this code to retrieve cookie using javascript (function(){ var cookies; function ...
1
vote
5answers
89 views

Node.js script would break when requesting HTTP responses from a site that does not exist

Using Node.js, when one requests a HTTP response, in optimal circumstances, the request comes back with a HTTP response. However, sometimes the request breaks because the site, for example, has a 404 ...
-4
votes
2answers
49 views

Site is loading slowly. Is javascript the culprit?

I suspect my site is loading slowly because of the numerous javascript references. Would it be more efficient and proper if I combined all of the javascript files into one one file? <script ...
1
vote
1answer
99 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
81 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
83 views

Asp.net Re-enable disabled button on Response

After some extensive searching, I can't seem to find a solution to this particular problem. I have a button which calls a server-side method which uses response to send a Zip file to the browser, and ...
0
votes
1answer
90 views

ajax xmlhttp response is null - javascript

Here is my code: <script type="text/javascript"> var xmlhttp; $(document).ready(function (){ ...
0
votes
2answers
63 views

parsing an ordered JSON response results into an unordered Object

I'm retrieving a JSON response from a server which is already sorted by "sort_id". responseText ==> { "status": 1, "complete": 1, "list": { "178432351": { "item_id": ...
3
votes
2answers
437 views

jqgrid how to show server side messages

I am using jqGrid to show data in tabular format, using JSP and servlet. EDIT I want to show errors from server, when operations like insert, update, delete are performed. (datatype: "xml") JQGrid ...
0
votes
1answer
468 views

Extjs / Javascript - wait for MessageBox response before function return

I'm working on a project with Extjs, version 4.0.7 and i have a problem. I have a function which verifies data validity before save. It looks like this: ...
1
vote
1answer
172 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: ...
0
votes
2answers
79 views

Javascript add string variable to response

So I have this response for a node.js program I'm using 'Content-Disposition': 'attachment; filename="tts.mp3"' Instead of tts.mp3 I have a variable called textToConvert. How can I add ...
0
votes
3answers
138 views

HTML response header is null in firefox/chrome but works in IE

I have used a simple script to get a response from a PHP page, but the response header is empty in firefox and chrome but not in IE. The snippet of my script is: var request = makeHttpObject(); ...
1
vote
0answers
55 views

Send a post URL and saving the unique Key from the response and send POST using Key recieved from first response

My knowledge is very limited but im at a complete loss of how to begin this or what commands to use while scripting this, I was hoping that it could be done in javascript, its sending the POST data to ...
0
votes
1answer
302 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", ...
2
votes
1answer
177 views

Get custom protocol response

I was learning about custom protocols for few days, and there's one thing that I don't understand. I know how to start an app with custom protocol, but My question is, Is it possible to get apps ...
0
votes
1answer
188 views

execute a function in content script if response is sent from Background

For my Chrome extension, I am attempting to post selected text to a PHP webpage. A solved question on this website (Chrome Extension: how to capture selected text and send to a web service) has helped ...
0
votes
1answer
155 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
348 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
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
421 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 ...
1
vote
3answers
326 views

Reading a response in javascript from JSP

I am new in learning AJAX and stuck in the first program. Tried to debug but unable to do so. Below is my code snippet ----------input-ajax.html------------------- <!DOCTYPE html PUBLIC ...
0
votes
1answer
134 views

Web page becomes inactive while waiting for AJAX response?

I have used a simple AJAX call in a webpage. The webpage is like this. On clicking the submit button the javascript sends the data in a text box to server and displays the response in a div. My AJAX ...
3
votes
1answer
337 views

IE7 JSON Response: Object Expected.. Works in Chrome and FireFox

This is the last thing I have to do before I can send my beloved webapp into the wild, but of course IE7 is being difficult with me!! I am using the JQuery Form plugin to upload data to my server. A ...
1
vote
1answer
145 views

Reading a URL source

I'm trying to write a simple random imgur generator. I've got what I want to do working, but, being random, there are a lot of file not found responses. What I'm trying to do is put the URL ...
1
vote
1answer
1k views

html5 multiple xmlhttprequest more response

Hi guys! I've got a little problem with my HTML5 XMLHttprequest uploader. I read files with Filereader class from multiple file input, and after that upload one at the time as binary string. On the ...
0
votes
1answer
154 views

How to create file for download using Response class and then interact with the client?

I have a button and its OnClientClick event calls Generate(). function Generate() { window.open('GenerateKey.aspx', '_newtab', 'titlebar = no', false); PageMethods.SendKey(SendKeyCallback, ...
-2
votes
4answers
671 views

How to get data from JSON response?

I am using plain JavaScript on my project. How can I get the value of the following example with the category? I need to detect whether it comes back true or false. { "category": "true" } I can ...
0
votes
0answers
427 views

windows popup close before display dos . xls

I'm trying to display a document in a popup window on IE8 -- but before showing, the window closes automatically. Here's the code: javascript: function hacerExportarExcel(){ var url = ...
1
vote
1answer
2k views

How to get Response Header location from jQuery Get?

So I am trying to get the location from a header response via jQuery get. I tried using getResponseHeader('Location') and getAllResponseHeaders() but they both seem to return null. Here's my current ...
0
votes
1answer
328 views

Exit Popup With Respone Redirect

I have a requirement to show an Exit Popup on one of our processing pages. I am showing the exit popup by registering a client side javascript like window.onbeforeunload = ShowExitPopUp(); The ...
0
votes
0answers
227 views

AJAX won't load my PHP file's response

What is wrong with my code? AJAX won't load my PHP response. I know it is triggering the doSomethingno() function because the JQuery is working and the getWeather() function is triggering, because it ...
2
votes
2answers
1k views

how to get the response of Iframe submitting a form?

I have a form that has been called using a iframe, now when that form is submitted i want to catch a response in the main site from where the iframe was called and depending on it would enable/disable ...
0
votes
1answer
289 views

Framey API - “Uncaught SyntaxError: Unexpected token :” when I request json

I am using the Framey API for video recording. When I make a request I get back the json response I expect, but an error is raised: Uncaught SyntaxError: Unexpected token : Here's the javascript ...
1
vote
2answers
1k views

Responsive images - Resizing a image on different screen sizes

I am using http://www.getskeleton.com/ at the framework for my site. I want a image to resize on different screen sizes e.g. iPhone. Does anyone know the easiest way to do this? I've done a google ...
1
vote
1answer
632 views

ajax: responsetext returns my entire php code locally

I found a good Tutorial: tutorial but it doesn't work locally. The Problem is, that the responsetext returns my entire php code. I double-click at my ajaxclock.html and use Firefox. Surprisingly, ...
0
votes
2answers
3k views

intercept response header with jquery ajax request

Exactly what the title suggests: I perform an ajax request to my server, it responds with a 403 but there are headers I want to retrieve and save on localStorage. This is for a phonegap app (Android ...
0
votes
1answer
611 views

Rails: ensure that $.post from jQuery is received as format.json in Controller

I have a jQuery script that is trying to post data like so: $.post({ $('div#location_select').data('cities-path'), { location_string: $('input#city_name').val() }, }); This works, but for ...
0
votes
2answers
446 views

Ajax return var with server response

I have this function, just make a simple request to the server, simply AJAX. ( function() { 'use strict'; Request = { Call: function ( u, theme, params ) { var ajax, t; ajax = ...
0
votes
3answers
137 views

How to retrieve response from xmlhttprequest? (screenshots)

I've got this code of autocomplete jqueryUI: .autocomplete({ source: function( request, response ) { var results = $.getJSON( url, { term: extractLast( request.term ) }, response ); ...
0
votes
1answer
267 views

Please help! FB.login() response is inconsistent; about 5% of people can't login

I would like to start by saying that most people who are trying to login on my site with Facebook are having no trouble, but about 5% of people who try to sign up are unable to. I believe the issue is ...
0
votes
1answer
478 views

I can not return JSON variable from jquery ajax function

I have function: function get_playlist(){ var result = jQuery.ajax({ url: '<?php echo admin_url('admin-ajax.php'); ?>', type: 'post', ...
1
vote
1answer
946 views

How to use reCAPTCHA?

I have read all the documentation for reCAPTCHA by Google, but it doesn't show any example code. Could anyone help me with the verification code so a form submits only when the get_response() ...
1
vote
2answers
310 views

Ajax response which sets javascript variable covers up any html elements

is there anyway to do this? My ajax sets a javascript variable but when i try to display it, using document.write, it covers the html elements. Can this be done so that i can use the javascript ...
1
vote
3answers
398 views

Executing Javascript written with XMLHttpRequest that contains script tags?

Through a Javascript request, XMLHttpRequest responds with some additional Javascript that needs to be added to the page the requesting page. Using eval(), if the response is something like: ...

1 2