0
votes
0answers
8 views

How to automatically simulate server responses from a browser plugin (Firefox/Chromium)

While I am testing a web application, for some requests that are computational intensive on the server side, I would like to simulate the server response directly from a browser add-on. I would like ...
0
votes
1answer
21 views

Manually renewing cached resources before browser does

I have some resources that my pages are using, defined as: <script type="text/javascript" src="dictionary.js"></script> Where dictionary.js is actualy created on the fly and returned ...
0
votes
0answers
16 views

Hooking browser page cache to browser history with AJAX for SPAs

I have investigated several solutions to incorporate browser history (back and forward buttons) with an SPA using AJAX. The prevalent solution is using the HTML5 history API such as history.pushState. ...
-8
votes
0answers
80 views

Loader image not working on ajax processing in chrome and IE [closed]

loader image not working on ajax processing in chrome and IE any body can tell me the exact reason this working fine in firefox?? Thanks
-1
votes
0answers
8 views

Where can i find this duplicate? [closed]

I found this post on Stackoverflow: Update and Reload Single Row in jqgrid It says there is a duplicate question which already has been answered, but i can't find this duplicate question anywhere. ...
0
votes
1answer
17 views

CORS-aided cross-origin-XHR

Modern browsers support CORS handily. If CORS-aided cross-origin-XHR is sent to CORS-ignorant site, the XHR succeeds in no question. Does it expose more vulnerability in this regard? How to strictly ...
1
vote
2answers
66 views

AJAX doesn't work in browser when wanting to retrieve data from URL

I've been experiencing this weird problem when I want to retrieve data from an URL. $.ajax({ url: 'URLHERE', dataType: 'html', success: function(data) { //function 2 var xml = $.parseXML(data) ...
0
votes
0answers
54 views

Safari: AJAX load + DOM manipulation + scroll in the same moment are impossible?

I'm developing a small web-app with infinite scroll. And I meet strange problem with Safari. Trying to achieve the next: we have 3 blocks on the page. As we scrolling page down and middle point of ...
0
votes
1answer
74 views

Rails Cross Origin Headers Set, XMLHttpRequest cannot load http://www.d1.com/sign_in, Origin something is not allowed by Access-Control-Allow-Origin

I am making a ajax POST Request from different origin to my server for user login. I have properly set the Cross Origin headers in my application_controller.rb def set_access_control_headers if ...
0
votes
2answers
109 views

IE caching ajax request does not execute javascript function

I have a javascript file loading via jQuery.getScript on the client and I'm setting cache-control headers with 1hr browser caching on the server side. It looks like IE caches ajax requests and the ...
0
votes
0answers
19 views

Requests AJAX frozen browser

my question is to hard to explain here so I created a video on youtube http://www.youtube.com/watch?v=v2eQoXurOlk&feature=youtu.be Basic question is how to clear the last request from the memory ...
-1
votes
3answers
149 views

AJAX Disable back button until callback executes [duplicate]

I have a code error popping up when someone hits the back button while an ajax call is loading. Is there a way to disable back until the call returns successfully? Example: $.ajax({ // Disable back ...
0
votes
1answer
76 views

Browser stops working for a while after synchronous ajax call in a for loop

This is my code: for (var i = 0; i < 2; i++) { $.ajax({ type: "GET", async: false, url: "/MyController/MyMethod", success: function (data) { if (i ...
0
votes
1answer
40 views

Does multiple tabs of same site send multiple ajax calls?

Let imagine we have site what every second check is there any new messages: $(function(){ setInterval(function(){ $.ajax({ url: 'message_check.php', success: ...
0
votes
1answer
158 views

How to make the browser remember the last page shown in multi-tab paginated content generated via ajax and jquery?

I have a tabbed content. based on the HTML below: <ul class="tabContainer"> </ul> <div id="tabContent"> <div id="contentHolder"> <!-- The AJAX fetched content ...
1
vote
1answer
28 views

Joining concurrent/identical HTTP GET requests?

Do browsers join concurrent identical HTTP GET requests? At least, for static or cache-able content? That is, if something like this happens: | AJAX/HTTP-GET(resourceX) | [start ...
5
votes
1answer
66 views

Prevent re-init in ajax

I have lots of page ajax request on my site. I am using jquery hashchange plugin to integrate them. Now, as I have observed, after I do $(window).hashchange I always have to re-init some other ...
1
vote
1answer
39 views

how browsers act when downloading images called from ajax?

I'm new in this topic, so my apologies for this question :) I need to create a page that must show all images uploaded in a post, one at time. When the user click next button, the it must load the ...
0
votes
1answer
25 views

JSON to be accessed only by AJAX

I'm creating a web app in Rails which outputs HTML templates (which are created by the user) as JSON. However, I don't want web browsers or crawlers to be able to view the rendered JSON (like when ...
0
votes
1answer
61 views

What should be the correct behaviour of browser when sending and receiving httponly cookie via ajax?

I currently have an issue with Firefox where it receives a cookie with httponly flag. However when a subsequent response is sent to the server the request does not contain any httponly flag (which may ...
1
vote
0answers
131 views

IE Freezing from onbeforeunload Request

I've run into an issue where Internet Explorer 7, 8 and 9 freezes because of a request that gets made in the onbeforeunload JavaScript event. This is a complex site with a lot of things going on, but ...
2
votes
1answer
393 views

WCF GET URL Length Limit Issue: Bad Request - Invalid URL

I tried to access a WCF Service through jQuery AJAX call with GET method. So, sometimes the URL is lengthy with parameters. When the parameters becomes so lengthy, jQuery AJAX Call fails, and returns ...
0
votes
0answers
118 views

Browser Back Button Issue in ajax pushstate

I'm working on a single page application where each section is loaded via ajax. When the page loading via ajax, I am changing the url using history.pushstate. After page loaded via ajax, while ...
0
votes
1answer
37 views

Forward/Backward Flag in Javascript

I m trying to control browser navigation buttons using hashes in my ajax dot net application. I need to setup a javascript flag which can store whether forward or back button was pressed..
0
votes
2answers
74 views

Browser Tab Icon for Local System Icon

Am trying to do Browser Tab icon for the local System, it is not working but using HTTP static icon it works, Please help me to understand the problem with me. PAGE 1 : This is not working <link ...
1
vote
2answers
139 views

What happens when no response is received for a request? I'm seeing retries

The question I have is probably more of a browser related question I think, but its a pretty fundamental one I'd like to find the answer too as I venture into building a web application. In my client ...
0
votes
1answer
181 views

Cross-domain request with ajax without json-data

I want to make a cross-domain request with ajax to get non-JSON(!) data (CSV-File). I'm using following code: $.ajax({ "url": dataset.url, "dataType": "text", "crossDomain": true ...
0
votes
1answer
44 views

Monitor AJAX requests from browser

I'm browsing a webpage that seems to populate data through javascript. I want to use an extension for my browser that will allow me to see what requests are being made to what url and what data is ...
1
vote
1answer
214 views

Ajax navigation/browser back

Need to implement ajax navigation without any page reload I'm writing html to ajax container div. Is there any solution to handle browser back and forward events. Also adding to a bookmark? I need to ...
0
votes
1answer
179 views

Unable to read the selected drop down list value on page load after pressing browser back button

Unable to read the selected drop down list value on page load after pressing browser back button.But this happen only during the first function call. I'll explain in details: When a page loads ...
0
votes
1answer
183 views

How to display alert and confirmation if back browser button has been clicked

I am creating an exam application mainly using php and jquery. At the moment the application has these pages in order to for the user to create an exam: Create.php (teacher creates the exam details ...
0
votes
1answer
85 views

AJAX select list population - remember values

I see there are few AJAX select list population questions here but none of them seem to answer my question. How do I get the browser to remember dynamically entered values from an AJAX call when the ...
2
votes
2answers
80 views

Is it safe to invoke a AJAX call and let the browser cancel the request?

If I make a AJAX reqeust it will be displayed in the network tab in Chrome. If I in the same moment makes a client based redirect, the AJAX request will canceled. But will the request make it to the ...
3
votes
1answer
331 views

jsTree - rendering optimization | very long rendering with 2000 nodes

I'm using jsTree ( 1.0-rc3 ) with option to load data by AJAX and I have a problem with loading about ~2000 childs node by it. While server responds within several seconds, it takes jsTree about ~40 ...
13
votes
10answers
1k views

How do I programmatically refresh a browser

I have three computers; Server, Client and Viewer. I am in control of the server and the viewer. The user on the Client connects to the Server and is presented with a webpage. Through a php script ...
1
vote
0answers
68 views

Get the returned url of an ajax call with a browser extension

What I'd like to do is make an ajax request to some url whose server I don't have access to. When the ajax call returns I'd like to get the url of the page I returned from. So, if I make an ajax ...
0
votes
0answers
21 views

what happens to an XmlHttpRequest when another page is loaded in the meantime

Assume we have the following order of events: An XmlHttpRquest is made from a web page Before the response is received (or maybe even request is sent?), the user clicks a link and goes to another ...
0
votes
1answer
61 views

How does XMLHttpRequest behave onClose of browser?

What can I expect if I initiate an XMLHttpRequest when the onClose event of the tab or browser window is fired? What happens if the XMLHttpRequest takes too long? Will the request be aborted or cut ...
-1
votes
5answers
179 views

Can we navigate to a different page if the user clicks on the back browser button?

I recieved a very helpful answer from Eric on how to display a confirmation is the user clicks on a browser back button, giving the user the choice if they want to go back or not. Below was his ...
0
votes
2answers
818 views

Open in new tab after ajax response in javascript

Open in new tab after ajax response in javascript is not working, tried with _newtab and _blank But none of them is working, I say, Is there any solution to get the answer ?
-1
votes
2answers
268 views

How to display confirmation if user clicks on a back browser button? [duplicate]

Possible Duplicate: Is there a way to catch the back button event in javascript? In my application I want only a certain number of scripts (Text1.php, Text2.php and Text3.php) to contain a ...
0
votes
3answers
175 views

How do I add a load icon to a page that just processes javascript code?

I use Ajax load icons all the time for when I do ajax requests. I want to know if it's possible to accomplish the same thing with just regular javascript code. For example: $('button').on('click', ...
3
votes
2answers
227 views

Which solution is best when the browser back button is hit

I have an application and the problem I have is with the back brower buttons, if the user cliks on a back browser, then it would mess things up in the application. So I want to do either 2 things: ...
0
votes
0answers
54 views

Developer browser extension: Search/download requested Ajax resources

I have to build a copy of a web application (but with other server technologies) without having the original source code. The goal is that it looks and behaves the same. Hence I saved the page with a ...
0
votes
2answers
371 views

Deciding whether javascript is disabled/enabled and execute a server side code [duplicate]

Possible Duplicate: redirect to another page if javascript is disabled I've an aspx page which loads several images after detecting client's screen size. Here is how I do this: In jquery ...
1
vote
1answer
148 views

AJAX implementation in single-threaded Javascript

How are AJAX requests made asynchronous if Javascript is not multi-threaded? Is the implementation browser specific?
0
votes
0answers
53 views

websites that only load sections when in view

I have noticed a trend where elements of websites do not load until it is in the immediate view. I would like to do more in depth solo research on this, but I don't know what this convention is ...
0
votes
0answers
99 views

Ajax 500 Error causes the browsers to load again the page

I am pulling one html page into another html page via ajax (pulling into the main-content div from another html), the problem is: i got the 500 error i.e i see the 500 status in the log tool( i saw ...
4
votes
1answer
293 views

AJAX long polling not sending from the browser

I have a javascript web app set up to use long polling with a .net server, using the ajax call: var _listenTimeout = 5 * 60 * 1000; //... $.ajax({ type: "GET", url: url, async: ...
0
votes
3answers
275 views

How to set cookie using php through $.post request

i'm trying to set cookie in a $.post request. My problem is that i want to delete cookie on browser close so i try this: ...

1 2 3 4 5