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.
5
votes
0answers
53 views
jquery ajax & preemptive basic auth
I am trying to reach some RESTful services that are running under Apache preemtive basic authentication. I am using jquery Ajax, and sending the user and password with the 'Authentication' header.
...
5
votes
0answers
302 views
jquery mobile collapsible and galaxy tab 10.1 json response gives random responses
Fairly new to jquery mobile and new to parsing json - have done much research to no avail.
Have tried 10sec delay in settimeout function
My app works correctly on my samsung galaxy s2 but on my ...
3
votes
0answers
27 views
How to trigger download with Rails send_data from AJAX post
I'm trying to use send_data to return a PNG image as the response for a ajax post request. How do I get the browser to trigger a download on the success callback?
Details
I'm generating a large ...
3
votes
0answers
122 views
using same origin policy still Why JSON response is blank with jquery ajax on https link?
I have one HTTPS page, on that secured page I am trying to implement jquery autocomplete plugin.
My code is as follows :
function stateAutoComplete(id, widthParam){
widthParam = typeof widthParam ...
3
votes
0answers
236 views
Struts2 Result type http header 500 does not trigger onErrorTopics in sj:autocompleter
We have a Struts2 application using Struts2-jQuery framework for Ajax operations. While using the Autocompleter (sj:autocompleter) tag in Struts2-jQuery as follows, it makes an ajax request to the ...
3
votes
0answers
412 views
Fading in images as they scroll into the viewport using datasrc, live and the Inview plugin.
I'm pretty close to cracking this, or cracking up, i'm not sure which yet. Maybe both.
I have a series of images loading on the page (some quite big) via an infinite scroll javascript (the only one ...
2
votes
0answers
53 views
can't find action only on live server, works fine in local server
A public action method 'AddPromoCode' was not found on controller
'Flazingo.Controllers.PositionController'. at
System.Web.Mvc.Controller.HandleUnknownAction(String actionName) at
...
2
votes
0answers
80 views
using jquery AJAX with node.js, handling the response from the server
this is my first time posting a question on here, I've mostly just been a lurker creeping on other questions, but this is something I've been trying to figure out and for the life of me can't.
...
2
votes
0answers
40 views
Process XML through ajax in Spring 3.0
How can POST XML (approximately 30000 lines) as data , in jQuery in Spring 3.0 .
2
votes
0answers
202 views
Using jquery mobile ajax- my calender only appears after i refresh page?
Didn't know how to word the question but when i move from my index page to my events.html page using jquery mobile, my calender does not appear until i press the refresh button on the browser.
Does ...
2
votes
0answers
262 views
MVC routing changes url hash when requesting partial view via AJAX
I'm using AJAX calls to request partial views and load their html into a content area on my main Index view. I'm leveraging a hash in to the url to enable browser history support (the same way GMail ...
2
votes
0answers
40 views
jQuery ajax request to Flickr sporadically fails
Occasionally, an ajax request to Flickr's api will fail. I'm not sure if I'm doing something wrong here - or if I'm just not handling things correctly - but the code works over 90% of the time. When ...
2
votes
0answers
112 views
Date Picker Integration with User's Google Calendar
I'm looking for a date picker for my site's forms, that integrates with the end-user's Google Calendar.
For example, I want user1 to be able to log into my site, and update their orders, and if they ...
2
votes
0answers
147 views
Cannot post data with jQuery Form Plugin
I have the following code (works fine) that i want to change it into jQuery Form Plugin ajaxForm() :
$("#replysubmit").click(function() {
var msg = $("#message").val();
var attach = ...
2
votes
0answers
110 views
How synchronous AJAX call could cause memory leak?
I understand this general advice given against the use of synchronous ajax calls, because the synchronous calls block the UI rendering.
The other reason generally given is memory leak isssues with ...