CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   JavaScript programming (http://www.codingforums.com/forumdisplay.php?f=2)
-   -   Reload Function (http://www.codingforums.com/showthread.php?t=272500)

durangod 09-07-2012 05:47 PM

Reload Function
 
Hi, i have a graph on a page that has two options, if you click "sign up" it shows how many people signed up in the last 10 days.
If you click "login" it shows you how many people logged in the last 10 days.

Here is my delima, it defaults to "login" when i click signup the page reloads but graph does not change until i click the refresh
in the browser (my guess is that at first it is getting it from cache) when click refresh or f5 then it changes the graph

this happens vice versa too, the graph does not change content until i press f5 or refresh the browser.

So what i did is i did a function.


Code:

<script>
function reloadthepage()
  {
  location.reload(true)
  }
</script>

Then i put the line.

Code:

<a href="<?=$_SERVER['PHP_SELF']?>?gra=sign" onClick="reloadthepage()">Sign Up</a> - <a href="<?=$_SERVER['PHP_SELF']?>" onClick="reloadthepage()">Login</a></div><img src="mygraph.jpg">
But it is still not working until i press f5 or the refresh icon on the browser. I thought the "true" option forced it to get it from the server and not cache?

Any ideas here, thanks...

Philip M 09-07-2012 07:09 PM

Try:-

onclick="window.location.reload(true)"

Or try specifying the page's href to ensure that the page is reloaded from the server:

window.location.reload(location.href);


Quizmaster: What character in A.A.Milne's "Winnie The Pooh" is named after his son?
Contestant: Pooh.

durangod 09-08-2012 02:21 AM

unfortunately that did not work either, so im not sure what the deal is. Im lost on this one but i will dig some more and see if i can find something to work, i dont know why it is not working.

Philip M 09-08-2012 07:30 AM

Quote:

Originally Posted by durangod (Post 1268027)
unfortunately that did not work either, so im not sure what the deal is. Im lost on this one but i will dig some more and see if i can find something to work, i dont know why it is not working.

Sorry, I don't know either! It ought to work.

hdewantara 09-08-2012 10:01 AM

Untested...
But with no reloadthepage(), try to have a "different image" for same page?
Then I guess this would be easier be done through PHP, which look like the last line below:
PHP Code:

  ...
  <a href="<?=$_SERVER['PHP_SELF']?>?gra=sign" onClick="reloadthepage()">Sign Up</a> - 
  <a href="<?=$_SERVER['PHP_SELF']?>">Login</a>
</div>
<img src="mygraph.jpg?<?=rand()?>">



All times are GMT +1. The time now is 12:53 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.