Tagged Questions
The ajax.request tag has no wiki summary.
4
votes
2answers
4k views
Cross Origin Resource Sharing with PrototypeJS
I am having some trouble with Cross Origin Resource Sharing and Prototye. I have a simple post request to a foreign resource, and for a simple post request there are some rules that must be satisfied:
...
3
votes
5answers
5k views
Best way to pass JSON from Browser to PHP using Ajax.Request
Hi I have a JSON object that is a 2-dimentional array and I need to pass it to PHP using Ajax.Request (only way I know how). ...Right now I manually serialized my array using a js function...and get ...
1
vote
2answers
990 views
Using Authentication with Ajax.Request
I currently have a Palm WebOS application that uses an Ajax.Request to connect to a web service using basic authentication. To send the username and password, I simply include it in the url (i.e. ...
0
votes
1answer
126 views
Prototype Ajax.Request not working in google chrome browser version 14.0.835.163 onwards
I have been using prototype's Ajax.Request for making ajax calls.
With the new versions of google chrome browser,this call seems to be breaking.
The onLoading function of Ajax.Request seems to be ...
0
votes
1answer
101 views
Where is the problem in this prototype [ajax.Request] code?
function sendM() {
new Ajax.Request("sendm.html",
{
method: 'post',
postBody: 'text='+ $F('text') +'&sub='+ $F('subject') +'&sname='+ $F('name') +'&sfmail='+ $F('email') +'to='+ ...
0
votes
2answers
124 views
Why is my AJAX request hanging after running for a while?
My AJAX calls from a page I wrote is hanging after an indeterminate number of calls. The page makes a request after a preset amount of time (currently 5 seconds) gets data from my server then waits ...
0
votes
1answer
288 views
Using Ajax.Request response inside of an object ? - PrototypeJS
for past two hours i've been trying to pass responseText to the object i'm calling Ajax.Request in. And it just isn't happening :) Here's the code;
var traziSuggest = Class.create({
...