Linked Questions

668 votes
12 answers
174k views

IE9 Bug - JavaScript only works after opening developer tools once. Our site offers free pdf downloads to users, and it has a simple "enter password to download" function. However, it doesn't work at ...
James Bruce's user avatar
  • 6,803
212 votes
9 answers
216k views

I have an ASP.NET MVC 3 application. This application requests records through jQuery. jQuery calls back to a controller action that returns results in JSON format. I have not been able to prove this, ...
JavaScript Developer's user avatar
66 votes
11 answers
141k views

I am new to angularjs. How can I detect userAgent in angularjs. Is it possible to use that in controller? Tried something like below but no luck! var browserVersion = int((/msie (\d+)/.exec(...
seUser's user avatar
  • 1,113
60 votes
10 answers
65k views

I currently use service/$resource to make ajax calls (GET in this case), and IE caches the calls so that fresh data cannot be retrieved from the server. I have used a technique I found by googling to ...
binarygiant's user avatar
  • 6,432
78 votes
7 answers
53k views

I have a rest endpoint that returns a list on a GET call. I also have a POST endpoint to add new items and a DELETE to remove them. This works in Firefox and Chrome, and the POST and DELETE work in ...
cmaynard's user avatar
  • 2,870
23 votes
4 answers
36k views

I'm trying to disable the cache in my AngularJS app, but it isn't working with the following code: $http.get("myurl",{cache:false}) When I use "myurl&random="+Math.random(), the cache is disabled;...
Potato's user avatar
  • 511
22 votes
2 answers
10k views

Strange behavior is happening when using signalR with IE 11. Scenario: We have some dispatcher type functionality where the dispatcher does some actions, and the other user can see updates live (...
Jack's user avatar
  • 9,252
3 votes
6 answers
3k views

I have an application with 2 views\controller: app.config(function ($routeProvider, $locationProvider) { $routeProvider .when("/", { templateUrl: "/vw/managment", ...
No1Lives4Ever's user avatar
5 votes
2 answers
6k views

I'm learning angularjs, and as a test project I'm polling a server that returns a list of active processes (their pids) and displaying these. The client code looks like this: <!DOCTYPE html> &...
user avatar
6 votes
1 answer
9k views

I read the document. but I think I must have misunderstood it. $http.defaults.headers.jsonp = { 'Accept' : 'application/json'}; $http.jsonp(url).success(function(data, status, headers, config) { I ...
Kim Stacks's user avatar
  • 10.9k
3 votes
4 answers
3k views

For god knows what reason, Office Add-ins on my local word client is Caching a html file that I dynamically load in (through angular) and refuses to give me a way to remove it from the cache. My only ...
Michael Crook's user avatar
1 vote
2 answers
5k views

I am facing a peculiar issue wrt caching. I am using chrome currently I have angularjs service as below var url = '/api/acts/' + accountId + '/policy/?filter=NEW_POLICY'; return $http(...
Monish Das's user avatar
0 votes
2 answers
4k views

I've an admin panel which is a pure angularJS application, which uses REST api for data manipulation. REST api is built using SlimAPI framework and Laravel's Eloquent ORM. I'm facing caching issue in ...
Rads's user avatar
  • 195
0 votes
1 answer
2k views

I have created a simple form with as below controller is as below angular.module('clientApp') .controller('SignupCtrl', function ($scope, $http, $log, alertService, $location, userService) { ...
Seroney's user avatar
  • 427
1 vote
2 answers
2k views

As discussed here, IE is bad about caching things when using ajax (i.e., $route and $http). A brilliant solution to this problem can be found here. We use many angular apps on our site, so in an ...
luvaas's user avatar
  • 2,226

15 30 50 per page