jQuery JavaScript Library suite for AJAX requests. A full set of functions that allows to load data from the server using asynchronous HTTP requests, without a browser page refresh.
75
votes
16answers
68k views
jQuery $.ajax(), $.post sending “OPTIONS” as REQUEST_METHOD in Firefox
Having trouble with what I thought was a relatively simple jQuery plugin...
The plugin should fetch data from a php script via ajax to add options to a <select>. The ajax request is pretty ...
32
votes
5answers
53k views
AJAX Jquery UI Dialog window loaded within Ajax style Jquery UI Tabs
The ajax tabs work perfectly well. It's pretty straightforward with that part. However, getting the ajax UI Dialog modal window to trigger off of a link has been un-succesful.
Any help in this would ...
30
votes
3answers
12k views
jQuery single quote in JSON response
I'm making requests to my server using jQuery.post() and my server is returning JSON objects (like { "var": "value", ... }. However, if any of the values contains a single quote (properly escaped like ...
29
votes
3answers
4k views
Rails not reloading session on ajax post
I'm experiencing a very strange problem with Rails and ajax using jQuery (although I don't think it's specific to jQuery).
My Rails application uses the cookie session store, and I have a very simple ...
25
votes
1answer
9k views
ASP.NET MVC 2 - Failed with jquery ajax response
I do not understand this error, do not generate error in "JsonResult Test ()", I am doing other projects as ASP.NET MVC
Thanks
Error:
System.InvalidOperationException: This request has been blocked ...
23
votes
7answers
26k views
jquery ajax request failing in IE
The following ajax call is failing in IE.
$.ajax({
url:"{{SITE_URL}}/content/twitter.json",
dataType:"json",
error:function(xhr, status, errorThrown) {
...
19
votes
5answers
19k views
Problems with jQuery getJSON using local files in Chrome
I have a very simple test page that uses XHR requests with jQuery's $.getJSON and $.ajax methods. The same page works in some situations and not in others. Specificially, it doesn't work in Chrome on ...
17
votes
5answers
8k views
Jquery: Why am I getting an OPTIONS request insted of a GET request?
With this code http://paulisageek.com/tmp/options.html :
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js" type="text/javascript"></script>
<script>
...
17
votes
4answers
12k views
How to make update panel in ASP.NET MVC
Hi Guys
i make search about how to make update panel in MVC ,but , because it is new , i cannot find good samples regarding it.How can i implement this to MVC?
Thanks
16
votes
10answers
19k views
Gmail like file upload with jQuery
I would like to upload files just like google mail does. I would want to use jQuery and PHP to do it is there anyway of getting the progressbar etc.?
Here I added a video of how google does it. ...
15
votes
3answers
2k views
can any one explain me what is JSONP in layman terms
I known JSONP is (JSON padding) . I Know what is JSON and using it in $.getjson in jquery is also known
But using jsoncallback cannot be understood and what is JSONP
14
votes
2answers
172 views
What is the difference between .resolve() and .promise()?
I'm digging into jQuery's deferred features. I've tried several examples on the internet. I understood its concept, but I don't understand the difference between resolve() and promise().
What are ...
13
votes
5answers
3k views
WARNING: Can't verify CSRF token authenticity rails
I am sending data from view to controller with ajax and I got this error :
WARNING: Can't verify CSRF token authenticity
So I think I have send this token with data.
Does anyone kno how can I do this ...
12
votes
1answer
8k views
Easiest way to create a cascade dropdown in ASP.NET MVC 3 with C#
I want to create two dropdown lists in a cascade using MVC3 (preferably Razor) with C#.
I would like to have one dropdown where you can choose the year and another one where you can choose a specific ...
12
votes
4answers
16k views
JQuery Checkbox Treeview
I am looking for a JQuery Checkbox Treeview. Does anyone know if a good one exists?
12
votes
4answers
22k views
How to use getJSON, sending data with post method?
I am using above method & it works well with one parameter in url
e.g. Students/getstud/1 where controller/action/parameter format is applied.
now I have an action in Students controller that ...
12
votes
13answers
26k views
jQuery Accordion and loading content through AJAX
I would like to load the content under each jQuery accordion header using the jQuery load command. Currently, I have set this up as the following
$(function() {
$("#accordion").accordion({ ...
11
votes
5answers
600 views
How to control the order of functions being called in jQuery $(document).ready
I need to be able to control the order of items being processed in the $(document).ready event.
These are multiple controls, loaded from multiple files, all asking to be called in the ready event. ...
11
votes
11answers
425 views
Apart from UI “flair”, what do you use jQuery for?
From an ASP.NET MVC perspective, what do you use jQuery for?
Apart from UI "flair" - things like fading colours and pretty animations.
Things I can immediately think of include pop-up calendars and ...
10
votes
2answers
3k views
Handling session timeout in ajax calls
I'm making an ajax call using jquery to an asp.net mvc controller action:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult GetWeek(string startDay)
{
var daysOfWeek = ...
10
votes
6answers
11k views
Can jquery .ajax load image?
I want to load external images on my page asynchronously using jquery and I have tried the following:
$.ajax({
url: "http://somedomain.com/image.jpg",
timeout:5000,
success: function() {
...
10
votes
7answers
2k views
how callback a function on 404 on JSON ajax request with Jquery?
I want made an Ajax request with response on JSON. So I made this Ajax request :
$.ajax({
url: 'http://my_url',
dataType: "json",
success: function(data){
alert('success');
},
...
10
votes
1answer
3k views
$.ajax( { async : false } ) request is still firing asynchronously?
I got a little problem here guys. I'm trying to implement the following scenario:
1- A user opens the home page and sees a list of other users and clicks to add one to his friend list.
2- I issue an ...
9
votes
6answers
232 views
Jquery UI slider how to make a box follow the handler?
I am trying to create a div that should follow the handler as it is seen here:
http://m1.dk/Priser/#tab:#calc,#abb
My JSfiddle: http://jsfiddle.net/z3xV3/2/
I also want to make a calculation on the ...
9
votes
9answers
367 views
Loading usercontrols on demand under jquery tabs
I have few jquery tabs on a usercontrol that loads a separate user control under each. Each user control is unique. It all works fine right now but the overall page response is too slow. In order to ...
9
votes
4answers
1k views
Ajax request return 200 OK but error event is fired instead of success
Hi I have implemented one Ajax request to my site where I am calling one of page.
It always return 200 OK but execute failed event I have tried lot of things but I am not getting where I am doing ...
9
votes
5answers
3k views
jQuery post causes Uncaught SyntaxError: Unexpected token :
I found a bunch of similar questions here but after 3 hours of reading them and trying stuff, I am posting my own. I apologize for the duplication, but I just don't know what's going on here.
So I ...
9
votes
7answers
5k views
jQuery 1.5 AJAX call fails with “invalid label” for JSON requests
I've just upgraded from version 1.4 to version 1.5 of jQuery, and now my AJAX calls always fail with the "invalid label" error.
An example request is:
jQuery.ajax({
async: false
, dataType: ...
9
votes
2answers
8k views
jQuery with ASP.NET MVC 3 books/tutorials?
Are there any books / tutorials on jQuery with ASP.NET MVC 3? I need to learn how to use ajax links and how to submit ajax forms ect. If there aren't any books / tutorials on MVC 3 yet MVC 2 wil ...
9
votes
4answers
573 views
Ajax Crawling: old way vs new way (#!)
Old way
When I used to load page asynchronously in projects that required the content to be indexed by search engines I used a really simple technique, that is
<a href="page.html" ...
9
votes
6answers
18k views
How to post ASP.NET MVC Ajax form using JavaScript rather than submit button
I have a simple form created using Ajax.BeginForm:
<% using (Ajax.BeginForm("Update", "Description", new { id = Model.Id },
new AjaxOptions
{
UpdateTargetId = "DescriptionDiv",
...
9
votes
8answers
23k views
jQuery's .load() not working in IE - but fine in Firefox, Chrome and Safari
I'm hitting my head on the wall against this one ...
I have the following code:
$("#home").click(function(e) {
$(".tabs").attr("src","tabs-home.gif");
$(".islice").hide('fast');
...
8
votes
2answers
9k views
Sending multipart/formdata with jQuery.ajax
I've got a problem sending a file to a serverside PHP-script using jQuery's ajax-function.
It's possible to get the File-List with $('#fileinput').attr('files') but how is it possible to send this ...
8
votes
3answers
5k views
Problem sending JSON data from JQuery to WCF REST method
I'm having some trouble getting jquery to post some json data to a rest method I have on my WCF service.
On the WCF side, here's the operation contract:
[OperationContract]
[WebInvoke(Method = ...
8
votes
5answers
315 views
How do I parse specific parts of a page using JQuery's AJAX method?
I'm trying to work out how to parse specific parts of a page using JQuery's AJAX method. What I'd like to do is something like this:
$.ajax({
url: "page-to-load.htm",
dataType: "html",
...
8
votes
6answers
4k views
How to display a “busy” indicator with jQuery?
How do I display a spinning "busy" indicator at a specific point in a web page?
I want to start/stop the indicator when an Ajax request commences/completes.
Is it really just a matter of ...
8
votes
6answers
4k views
Jquery - How to make $.post() use contentType=application/json?
I've noticed that when using $.post() in jquery that the default contentType is application/x-www-form-urlencoded - when my asp.net mvc code needs to have contentType=application/json
(See this ...
8
votes
2answers
3k views
Which browsers don't support a HTTP DELETE with jQuery.ajax?
The jQuery documentation for jQuery.ajax() says the following:
Note: Other HTTP request methods, such
as PUT and DELETE, can also be used
here, but they are not supported by
all browsers.
...
8
votes
5answers
22k views
Show/hide fields depending on select value
I am trying to show and hide a few form fields dependent on the value of one of my select fields. I am looking to use arrays to hold what should be show and what should not be show for each select ...
7
votes
1answer
60 views
Handles other status codes in $.ajax request
In the code below, I'm handling for status code 200 and 401. What do I do if I want to direct control to a function that handles all codes apart from 200 and 401?
$.ajax({
type: "POST",
...
7
votes
5answers
2k views
Rails 3.1 - CSRF ignored?
here my problem,
I've got a rails 3.1 app and I'm trying to make an ajax request but I get the warning message "WARNING: Can't verify CSRF token authenticity"…
Inside my layout I've got the helper ...
7
votes
2answers
626 views
jQuery Deferred vs jqXHR
I use:
var jqXHR = $.ajax(settings);
jqXHR.success(function(result){});
jqXHR.error(function(result){});
jqXHR.complete(function(result){});
But version 1.5 has added the deferred object.
Q: In ...
7
votes
1answer
113 views
Possible collision of two ajax requests?
I'm having trouble with one of my sites on which two ajax requests are executed when the page loads. I'm using jQuery in combination with an PHP application based on the zend framework.
The relevant ...
7
votes
3answers
521 views
How to make the browser back button take you back through AJAX calls?
I have a page with a lot of dynamically generated check boxes on it. As the users click these check boxes a lot of content on the page changes dynamically via ajax. The end users are complaining that ...
7
votes
4answers
933 views
JQuery: How to fire certain action before and after every Ajax-Call
I'm using Jquery and JqueryUI. I experienced that users sometimes fire the ajax-calls more than once, because the button/Link that triggers the call is not disabled right after they click it. To ...
7
votes
2answers
3k views
ASP.NET MVC Ajax Error handling
How do I handle exceptions thrown in a controller when jquery ajax calls an action?
For example, I would like a global javascript code that gets executed on any kind of server exception during an ...
7
votes
3answers
436 views
Is My Page Being Loaded from the Browser Cache?
I have a "new items" badge on a page that I want to update immediately the page is loaded from the cache (i.e. when hitting "Back" or "Forward" to return to this page). What is the best way to ...
7
votes
4answers
744 views
can i remove the X-Requested-With header from ajax requests?
I wanted to know if anyone has had experience with trying to remove the 'X-Requested-With' header from the ajax request made by jquery (or plain JS). is it possible?
2nd part: do you know if Grease ...
7
votes
3answers
5k views
How to make Ajax calls with Rails 3 using remote_function?
I am trying to make an onchange call on a select box.For my application i am using jquery.js and rails.js as mentioned to make use of UJS. But still the code that is generated is for Prototype and not ...
7
votes
5answers
265 views
Is there a reason to prefer jQuery.Ajax to asp.net UpdatePanel?
If I am developing an asp.Net application, can there be some cases where I should forget about MS Ajax UpdatePanels and prefer jQuery.Ajax to update some part of my page?
Thank you