Questions tagged [reload]

reloading is the process of re-requesting and re-rendering the currently displayed page

Reloading is the process of re-requesting and re-rendering the currently displayed page, triggered for example by JavaScript or the user. Use this tag to mark questions related to forcing the browser to reload or in context of bugs that occur specifically when reloading a page.

2765 questions
19
votes
5 answers

VS2008: Disable asking whether to reload files changed outside the IDE

I have a Visual Studio 2008 project where some code files are generated with each build (a parser, integrated via MSBuild aka editing the *.csproj file). VS does not know about the generated nature of these files (i.e. they are not the result of a…
Christian Klauser
  • 4,416
  • 3
  • 31
  • 42
18
votes
9 answers

Reload page after message is shown, jQuery

Right now I have a form where user enters the info. It is than processed bu jQuery ajax function and is set to return false; so no page reload happens after user submits a form. Although I need to reload page, but if I remove return false; it…
Ilja
  • 44,142
  • 92
  • 275
  • 498
18
votes
2 answers

Nodemon and/or Hot Reloading with a Node-React Web App

I'm still pretty new when it comes to configuring a web app with webpack to create an optimal dev experience. I've taken two different Node-React courses: one where we used nodemon for tracking changes and another where we implemented hot…
orpheus
  • 1,060
  • 2
  • 15
  • 23
18
votes
2 answers

Progressively slower reloading time of .vimrc

My boot time for vim is about a half second (tested with "--startuptime"), but after I reload vimrc a couple times via source, it gets slower subsequently. I have not debugged .vimrc in a systematic way, so I am not sure how to proceed. Setting…
Forethinker
  • 3,548
  • 4
  • 27
  • 48
18
votes
6 answers

reloading module which has been imported to another module

Let's face it, the whole business of reloading python code after changing it is a mess. I figured out awhile back that calling import at the interpreter is better than from import , because then I can call…
J-bob
  • 8,380
  • 11
  • 52
  • 85
17
votes
6 answers

How can I force my plugin to reload with each request?

As I understand it, plugins are not reloaded in Rails with each request in development mode. Which makes sense, as generally you add plugins to your app and it's the app you're developing. But if you are developing a plugin, you have to restart the…
17
votes
2 answers

How to reload page when a button is clicked?

I need to refresh current page when confirm button is clicked. I am trying to find the answer on the internet, but with little or no success at all. It would be nice if there was a way to update it from front-end (JSF), not from backing bean, but, I…
WheelPot
  • 307
  • 1
  • 3
  • 15
17
votes
3 answers

How to make vim pathogen to reload plugins?

Is it possible to make vim to reload pathogen plugins without restarting vim? I have opened vim with many files, then I add plugin to: ~/.vim/bundle Since now I'd like to force vim to use the new plugin.
xliiv
  • 5,399
  • 5
  • 29
  • 35
17
votes
9 answers

Preventing Firefox reload confirmation

I'm displaying certain records in an editable table. The user when attempts to reload the table while editing a record a pop up comes warning the record about the unsaved data. function cancelProcess() { if(noEditedRecords !=0)//number of edited…
Emmi
  • 223
  • 1
  • 2
  • 8
17
votes
2 answers

Recursive module import and reload

Can someone explain why executing the following code: file "hello.py": import hello print "hello" hello = reload(hello) executing as python hello.py prints the following? hello hello hello hello Why 4 times? I know that when a module is already…
AlbertFerras
  • 726
  • 5
  • 14
16
votes
4 answers

Refresh NSFetchedResultsController data?

I can create new managed objects inside my app, in a separate view I have a table view which shows all the objects I have. When I create a new managed object (in a totally separate view), I am sending out a notification which is trying to get my…
Daniel
  • 23,129
  • 12
  • 109
  • 154
16
votes
4 answers

How to reload a div without reloading the entire page?

I suppose what I am asking is really easy for most of you. I want to reload a div without reloading the entire page. What's the best way to do it?
Gabriele
  • 161
  • 1
  • 1
  • 4
16
votes
7 answers

How can i prevent page reload on form submit angular 7

I am not familiar with Angular .Am facing a problem with submit button .When i click on button where type is submit it is reloading the complete page .Instead of calling my service API. Even i added (keydown.enter)="$event.preventDefault()" on form…
Karthik
  • 197
  • 1
  • 2
  • 10
16
votes
2 answers

Does "Empty Cache and Hard Reload" empty the entire cache or just parts relevant to the current site?

Does "Empty Cache and Hard Reload" in Chromium/Chrome empty the entire cache or just parts relevant to the current site? My inkling is that it empties absolutely all cached resources (as suggested in the comment to this answer). However, a…
Matthew Flaschen
  • 278,309
  • 50
  • 514
  • 539
16
votes
2 answers

Reload Solr core with curl

I'm trying to reload the Solr core (version 3.6.0) by means of the following sentence: curl http://localhost:8983/solr/admin/cores?action=RELOAD\&core=mycore When I execute it, I get the following response:
asuka
  • 2,249
  • 3
  • 22
  • 25