150
votes
4answers
50k views
Kill Ajax requests using JavaScript using jQuery
Using jQuery, how do I cancel an Ajax request that I have not yet received the response from?
90
votes
10answers
16k views
Ways to circumvent the same-origin policy
The same origin policy
I wanted to make a community wiki regarding HTML/JS same-origin policies to hopefully help anyone searching for this topic. This is one of the most searched-for topics on SO ...
78
votes
12answers
56k views
On - window.location.hash - change?
I am using Ajax and hash for navigation. Is there a way to check if the window.location.hash changed like this?
http://example.com/blah#123 to http://example.com/blah#456
It works if I check it when ...
66
votes
9answers
2k views
Why is it a bad practice to return generated HTML instead of JSON? Or is it?
It is quite easy to load HTML content from your custom URLs/Web services using JQuery or any other similar framework. I've used this approach many times and till now and found the performance ...
64
votes
5answers
144k views
jQuery get textarea text
Recently I have started playing with jQuery, and have been following a couple of tutorials. Now I feel slightly competent with using it (it's pretty easy), and I thought it would be cool if I were ...
63
votes
10answers
22k views
JavaScript implementation of Gzip
I'm writing a Web application that needs to store JSON data in a small, fixed-size server-side cache via AJAX (think: Opensocial quotas). I do not have control over the server.
I need to reduce the ...
63
votes
11answers
30k views
What's a good AJAX Autocomplete Plugin for jQuery?
I usually use jQuery as my JS library on my sites, and I would like to stick with it since I'm familiar with it.
I need to implement an AJAX autocomplete, mainly for suggesting search results. Here ...
52
votes
4answers
13k views
What exactly can cause an “HIERARCHY_REQUEST_ERR: DOM Exception 3”-Error?
And how exactly does it relate to jquery? I know the library uses native javascript functions internally, but what exactly is it trying to do whenever such a problem appears?
Thx for any response in ...
52
votes
11answers
33k views
How do I send a cross-domain POST request via JavaScript?
How do I send a cross-domain POST request via JavaScript?
Notes - it shouldn't refresh the page, and I need to grab and parse the response afterward.
Your help with some code examples will be much ...
52
votes
8answers
55k views
Safely turning a JSON string into an object
Given a string of JSON data, how can you safely turn that string into a JavaScript object?
Obviously you can do this unsafely with something like...
var obj = eval("(" + json + ')');
...but that ...
51
votes
5answers
3k views
Why does Internet Explorer not send HTTP post body on Ajax call after failure?
We are able to reliably recreate the following scenario:
Create a small HTML page that makes AJAX requests to a server (using HTTP POST)
Disconnect from the network and reconnect
Monitor the packets ...
49
votes
4answers
2k views
How does facebook rewrite the source URL of a page in the browser address bar?
Go to http://www.facebook.com/facebook?v=wall, then click on the info tab. The content will be loaded, and the address bar now becomes http://www.facebook.com/facebook?v=info but the webpage didn't ...
47
votes
9answers
30k views
Drag-and-drop file upload in Google Chrome/Chromium and Safari?
Drag-and-drop file uploading can be done in Firefox 3.6.
A Google search for html5 drag-and-drop file uploading -gmail gives things like:
Native Drag + Drop file upload in Firefox 3.6
...
41
votes
5answers
2k views
Why do people put code like “throw 1; <dont be evil>” and “for(;;);” in front of json responses?
Google returns json like this:
throw 1; <dont be evil> { foo: bar}
and Facebooks ajax has json like this:
for(;;); {"error":0,"errorSummary": ""}
Why do they put code that would stop
...
40
votes
11answers
2k views
Is there any reason to use a synchronous XMLHttpRequest?
It seems most everyone does asynchronous requests with XMLHttpRequest but obviously the fact that there is the ability to do synchronous requests indicates there might be a valid reason to do so. So ...
40
votes
7answers
10k views
Will HTML5 allow web apps to make peer-to-peer HTTP connections?
This is probably a dumb question, but I have to ask it anyway. I'd like to know if it is at all possible to create a web app that, with the help of a central server, could create direct connections ...
37
votes
2answers
7k views
Updating address bar with new URL without hash or reloading the page
I either dreamt about chrome (dev channel) implementing a way to update the address bar via javascript (the path, not domain) without reloading the page or they really have done this...
However...I ...
36
votes
2answers
8k views
Prevent redirection of Xmlhttprequest
Is it possible to prevent the browser from following redirects when sending XMLHttpRequest-s (i.e. to get the redirect status code back and handle it myself)?
33
votes
3answers
26k views
Scroll to bottom of div?
I am creating an ajax chat in rails and I am trying to get a div to scroll to the bottom without much luck.
I am wrapping everything in this div:
#scroll {
height:400px;
overflow:scroll;
}
...
32
votes
15answers
27k views
How do I test for an empty Javascript object from JSON?
After an AJAX request, sometimes my application may return an empty object, like:
var a = ({});
How can I check whether that's the case?
31
votes
2answers
1k views
What is the right pattern for using JQuery Ajax and ASP.Net Mvc?
I'm very new to both the Mvc framework as well as JavaScript and JQuery. I'm trying to understand the right way to structure Ajax calls.
Let's say I have a "Vote Up" button similar to what you see on ...
31
votes
17answers
20k views
JavaScript: How to detect that the Internet connection is offline?
How to detect that the Internet connection is offline in JavaScript?
31
votes
6answers
10k views
Best JavaScript i18n techniques / Ajax - dates, times, numbers, currency
For server side generated content, i18n support is usually pretty easy, for example, Java provides extensive i18n support.
But, these rich server side libraries are not available within the browser, ...
30
votes
3answers
2k views
Why does Google append while(1); in front of their JSON responses?
This is something I've always been curious about, is exactly why Google appends while(1); in front of their (private) JSON responses.
For example, here's a response while turning a calendar on and ...
30
votes
1answer
2k views
Why have “while(1);” in XmlHttpRequest response?
I'm playing firebug with Google Calendar. I happens to find that some XHR request has response like below:
while(1);[['us','bW9yZ2FuLmNoZW5nbW9AZ21haWwuY29t 20090320/20090904 63378122163']]
It ...
29
votes
3answers
10k views
JSON security best practices?
While researching the issue of JSON vs XML, I came across this question. Now one of the reasons to prefer JSON was listed as the ease of conversion in Javascript, namely with the eval(). Now this ...
28
votes
8answers
710 views
What happens in JavaScript when an AJAX call returns while the script is executing?
Suppose I write some JavaScript that performs an AJAX call with myCallback as a callback method to execute when the AJAX succeeds.
Suppose then that some other JavaScript method called myFunction is ...
28
votes
3answers
4k views
Programmatically Untag FB Photos with Javascript
I've spent the past hour hacking away at this: I want to write a Javscript routine to programatically untag myself from photos on Facebook. Once it works, I'll run it in the Firebug console and untag ...
28
votes
9answers
33k views
Detecting Back Button/Hash Change in URL
I just set up my new homepage at http://ritter.vg. I'm using jQuery, but very minimally.
It loads all the pages using AJAX - I have it set up to allow bookmarking by detecting the hash in the URL.
...
25
votes
16answers
1k views
How to Check Authenticity of an AJAX Request
I am designing a web site in which users solve puzzles as quickly as they can. JavaScript is used to time each puzzle, and the number of milliseconds is sent to the server via AJAX when the puzzle is ...
24
votes
10answers
3k views
Best book to learn web development for a professional developer? [closed]
I'm a professional software developer. I've been programming in a lot of different languages over the course of more than two decades now. Picking up a new programming language is very easy for me.
...
23
votes
7answers
873 views
How to overcome this security issue
I have implemented an ajax-polling script that calls an action in the server Controller every 10 seconds. With the response, I replace the content of a div:
function getFoo() {
var link = ...
22
votes
5answers
4k views
Ajax, back button and DOM updates
If javascript modifies DOM in page A, user navigates to page B and then hits back button to get back to the page A. All modifications to DOM of page A are lost and user is presented with version that ...
21
votes
6answers
815 views
In 2011 is it truly necessary to still degrade js? [closed]
Serious question.
I tried most of the famous websites (including facebook) and I can say that tons of functionality doesn't degrade at all with js disabled. I've been always told that js should ...
21
votes
5answers
884 views
Do you know of a bleeding-edge HTML5 leveraging, legacy-ignoring JavaScript framework?
What's the best framework (sort of jquery, extjs, etc like) to use if I'd like to intensively use all the freshest technologies of the HTML5 stack provided by modern browsers (Firefox 7, Safari 5, ...
20
votes
3answers
8k views
Post data to JsonP
Is it possible to post data to JsonP? Or does all data have to be passed in the querystring as a GET request?
I have alot of data that I need to send to the service, cross domain, and it is too large ...
20
votes
6answers
7k views
How to “enable” HTML5 elements in IE that were inserted by AJAX call?
See the solution at the bottom of the question.
IE does not work good with unknown elements (ie. HTML5 elements), one cannot style them , or access most of their props. Their are numerous work ...
20
votes
9answers
43k views
Resize iframe height according to content height in it
I am opening my blog page in my website. The problem is I can give a width to an iframe but the height should be dynamic so that there is no scrollbar in the iframe, and it looks like a single page...
...
20
votes
5answers
32k views
Access to restricted URI denied code: 1012
How do you get around this Ajax cross site scripting problem on FireFox 3?
19
votes
3answers
3k views
When does the browser execute Javascript? How does the execution cursor move?
I was wondering if there are any available resources that describe how a browser's cursor executes Javascript.
I know it loads and executes tags when a page loads, and that you can attach functions ...
18
votes
4answers
2k views
How can you make a vote-up-down button like in Stackoverflow?
Problems
how to make an Ajax buttons (upward and downward arrows) such that the number can increase or decrease
how to save the action af an user to an variable NumberOfVotesOfQuestionID
I am not ...
18
votes
24answers
13k views
Best PHP Framework w/ AJAX Support? [closed]
Question
I'm fairly familiar with many of the PHP frameworks out there, but I'm wondering which ones actually integrate AJAX functionality and which ones do it well? Ideally I'd love to find a ...
17
votes
7answers
1k views
Update whole page on Ajax request
I have an AJAX request that can have two possible outcomes:
The server responds with a message which I should place in a <div>
The server responds with an HTML page, in this case I need to ...
17
votes
6answers
8k views
How to add a Facebook “Like” button to an AJAX driven page
I have trolled the net + Stackoverflow and have not found an adequate answer to this question and before I start the trial and error process of finding my own solution, I thought I would turn to the ...
17
votes
4answers
5k views
Why GWT? Advantages and Trade-Offs of Using This RIA Framework
I'm new to stackoverflow and have been reading through a bunch of the "highest voted" questions for GWT. Several of these questions talk about the pitfalls or problems with GWT. In the articles: ...
17
votes
3answers
7k views
jQuery AJAX polling for JSON response, handling based on AJAX result or JSON content
I'm a novice-to-intermediate JavaScript/jQuery programmer, so concrete/executable examples would be very much appreciated.
My project requires using AJAX to poll a URL that returns JSON containing ...
17
votes
17answers
886 views
What do you call DHTML these days?
So lately I've been catching a lot of crap from a junior developer whenever I use the term "dHTML". I know the term is dated, but it's descriptive of what the task is: changing rendered markup on the ...
17
votes
7answers
13k views
Is it possible to use Ajax to do file upload?
I don't want to use jQuery, but I'd like to use Ajax to do file uploading. Is that possible?
If so, where can I find information/tutorial on it?
17
votes
8answers
9k views
How to get progress from XMLHttpRequest
Is it possible to get the progress of an XMLHttpRequest (bytes uploaded, bytes downloaded)?
This would be useful to show a progress bar when the user is uploading a large file. The standard API ...
16
votes
11answers
2k views
Advanced jQuery/Ajax books or tutorials online
To begin with, I believe I know jquery basics quite well. I want to learn more and be able to make more complex things (like live chat with many features or something like that).
So, can anyone ...