Questions tagged [partial-page-refresh]

Modify part of a page without reloading/refreshing.

Modify part of a page without reloading/refreshing. Rendering part of a page removes the need for the whole page to be refreshed after a server response and creates a more seamless user experience. Instead, only individual regions of the page that have changed are updated.

174 questions
10
votes
3 answers

JavaScript. a loop with innerHTML is not updating during loop execution

I'm trying to refresh a div from Javascript at each loop and see 1, 2, 3, .... The following code works, but only displays the final result (9998). How is it possible to display all the steps? Thank you in…
user763308
  • 435
  • 2
  • 5
  • 10
9
votes
3 answers

JQuery Dialog: How to do partial page refresh and get new dialogs each time

I'm having a workflow issue with my JQuery dialogs when trying to create the dialogs and then doing a partial page render. I'll try to go through a sample scenario, and my apologies in advance for the long problem description: The page loads, with…
BAHDev
  • 805
  • 3
  • 9
  • 11
8
votes
6 answers

Read the contents of a text file every 15 seconds

I'm working on a music site: I have a text file on the server which contains the name of the currently playing song. I would like read the text file every fifteeen seconds, and change the text displayed on my site, without a refresh. Now, using a…
7
votes
1 answer

How to redirect on different view on refresh in AngularJS?

i'm developing an application in AngularJS. Basically, i have a "home" page and a "new project". In the home page i have a menu with a link to "new project". I configured the $stateProvider as follows : $stateProvider.state('home', { url: '/', …
7
votes
3 answers

Twitter refresh page via API

I'm using the Twitter API (via TweetSharp) and was wondering if it's possible to automatically refresh the page from the API so that all users see the update? If so, is it also possible to take it one step further by only have a partial page update…
XSL
  • 2,965
  • 7
  • 38
  • 61
5
votes
3 answers

Change page without refresh a div into the page

Hi i'm looking for a tutorial for understand how i can create a page with a div that isn't refreshed when the page url changes. Ex. The facebook chat isn't refreshed when i move from an url to another. Thanks
Luca Romagnoli
  • 12,145
  • 30
  • 95
  • 157
5
votes
1 answer

PHP Refresh table content using ajax

I have a form which contains a table which is populated with data dynamically according to selected option in dropdown. The dropdown contains 2 values "enabled" and "disabled". The first column of each row in table contains a checkbox. The table…
Avinash
  • 1,935
  • 7
  • 29
  • 55
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 %>