Questions dealing with causing or preventing the re-rendering of an HTML document by a web browser.
Questions tagged [page-refresh]
1164 questions
6
votes
2 answers
Refresh specific page with Angular, Express and Jade (using html5mode)
I'm trying to refresh a page and execute client route to open a template inside ng-view
Index.jade
extends layouts/default
block content
section(data-ng-view)
script(type="text/javascript").
window.user = !{user};
default.jade
doctype…

Leandro Hoffmann
- 1,122
- 1
- 16
- 30
6
votes
4 answers
Symfony2 form refresh same page after submit
I have a form whose content is created from a DB.
in my controller i have:
/**
* @Route("/HR/manage/{projectID}", name="hr_manage")
*/
public function manageHRAction(Request $request, $projectID)
{
//here I get all the data from DB and create the…

Sergio Negri
- 2,023
- 2
- 16
- 38
6
votes
2 answers
history.pushstate and HTTP POST form repost
I am currently facing a little problem with HTTP post forms and history pushstate.
When my user submits a POST form in example.com/page-1 and then clicks on a link within this page, they are redirected to example.com/page-2 with a history.pushstate.…

pafounet
- 61
- 1
- 2
5
votes
2 answers
How to refresh the web page when user select a particular value on dropdown list on rails?
I'm developing project on rails 2.3.8 and I need to refresh the whole web page when user select particular selection on drop-down menu. How can I do it on rails ?
This is my drop down menu
<%= collection_select("country", "id", @countries , :id,…

SL_User
- 1,934
- 5
- 24
- 45
5
votes
2 answers
Serving download after form submit w/ validation
I have created together a pretty simple Download Code redeemer in .php (thanks to help from here) and am having a hard time trying to figure out what the best way to serve a download is if the validation is successful. Basically -
User enters…

Bantros
- 295
- 8
- 17
5
votes
3 answers
How to make sure the users see the new logo?
We redid the logo for our website, and I want to ensure that users see the new image when they come to our page. The logo is a background-image for a div. How do I ensure that the css is refreshed when the users come to the page?

dmr
- 21,811
- 37
- 100
- 138
5
votes
9 answers
Prevent page refresh on pressing F5
I have Created form with Server Side control like button..and also have written event on that..
Now runtime after click on the button i have refreshed the page by pressing F5.Page_load is executing fine but button1_click() event also firing...So how…

karthik k
- 3,751
- 15
- 54
- 68
5
votes
1 answer
Selenium WebDriver Python reload html without refreshing the page
I have a page with self-refreshing content (via WebSocket) like this one. While the content is constantly changing my firefox webdriver can only see the initial content. I could get the fresh one by refreshing the page by
…

user92020
- 113
- 1
- 7
5
votes
4 answers
Prevent Javascript Page Reload
I am using this javascript to auto refresh a page every 30 seconds.
I need to give users an option to disable this function at…

ratherBeKiting
- 275
- 5
- 14
5
votes
2 answers
How to preserve ui-router parameters on browser refresh
am using angular ui-router to manage states of my SPA.
I have this route:
.state('index.administration.security.roleEdit', {
url: '/roleEdit',
templateUrl: 'app/administration/security/role/roleEdit.html',
…

Luka
- 4,075
- 3
- 35
- 61
5
votes
1 answer
5
votes
2 answers
Delphi Chromium Embedded - Refresh page with F5
I am using Delphi Chromium Embedded in my application, and I have the following question:
How can I emulate F5 key to refresh page ?

henry60
- 463
- 12
- 24
5
votes
1 answer
Can I make a selective refresh of the contents in the JSP page?
It seems to be weird but still :
Is there any way I can make only the selective portion of the jsp page get refreshed ? Suppose :
<% response.setIntHeader("Refresh",1); // refresh at an interval of 1 second %>