Search Results

0
votes
1answer
48 views

strange problem of ajax

It's essentially like this: ----code snippet---------- function loadURI(uri) { var xhr = createXMLHttpRequest(); xhr.open("GET", uri, false); xhr.send(null); return …
0
votes
4answers
160 views

how to upload a file with ajax,like what gmail does?

I know how to POST/GET text values with ajax, but never know how to upload files with ajax. Can someone just give a simple demo here? …
0
votes
2answers
194 views

How to implement the progress bar like gmail? [closed]

How is the progress calculated? …
0
votes
2answers
83 views

How to dynamically fetch some html file and use it to create content of a DIV with jQuery?

Say,how to implement these three steps: 1.fetch a html source from server side 2.use the above source to create a DIV 3.append it to <body> Element …
0
votes
5answers
99 views

How to send some data to server side and get the response with jQuery?

Like below,I need to send "name" and "psw" value to server side, and get the response as right or wrong. <table cellpadding="0" border="0" width="100%"> <tr ali …
1
vote
6answers
219 views

response.statusText=”OK” but falls into error callback from ajax with jQuery

Server side: .... $_SESSION['accountId'] = $accountId; $_SESSION['type'] = $_POST['accountType']; echo '1'; return; Client side: $ …
0
votes
5answers
211 views

Has anyone ever successfully tracked down uncaught exception during ajax request?

How do ajax know whether it failed or succeeded if server side doesn't echo anything back? $.ajax(error:..,success:..) I met with this exception in my test: …
-1
votes
1answer
68 views

Access to XMLHttpRequest.statusText will cause exception when it fails?

$.ajax(error:function(XMLHttpRequest, textStatus, errorThrown) { XMLHttpRequest.statusText }) Did someone also met this problem? EDIT …
-1
votes
2answers
92 views

How to keep database connect alive?

I'm using ajax, and quite often if not all the time, the first request is timed out. In fact, if I delay for several minutes before making a new request, I always have this issue. But the subsequ …
0
votes
1answer
81 views

Ajax timeout but server side not terminate

I'm using jQuery and use $.ajax to send out request. My computer is pretty slow(which can be fixed by adding updating the memory), and the request times out frequently. But …
0
votes
2answers
32 views

ajax scalability/concurency problem

I bind a $.ajax to the click event. but I found from firebug that some clicks don't actually send out requests. And there is a setInterval statement which also send ajax request per …