Jump to content

Page Refresh


The Little Guy

Recommended Posts

Just an out of the blue question.

 

I noticed that on my sites, that when I refresh the page, the page starts at the very top, and isn't automatically scrolled down to where I was when I refreshed the page. It only happens when I add php to the site, such as some mysql stuff, and dynamic info.

 

Unlike on this board, if you refresh the page, it remembers how far you were scrolled down.

 

Why do my sites do that?

Link to comment
Share on other sites

if you look in the URL

http://www.phpfreaks.com/forums/index.php/topic,214242.html#msg978053

 

this part right here ....#msg978053 tells the page how far to go down

 

What is it? Well, if you know CSS you don't need that answer, but that's the id of one particular area on the page.

You'll have to use id's to do what you're looking for.

Link to comment
Share on other sites

This is more of a javascript question, but I've got a piece that I've posted somewhere before as a solution that's helped me on some of my pages that needed it (forms, etc)

 

function getScrollXY() {
 var scrOfX = 0, scrOfY = 0;
 if( typeof( window.pageYOffset ) == 'number' ) {
   //Netscape compliant
   scrOfY = window.pageYOffset;
   scrOfX = window.pageXOffset;
 } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
   //DOM compliant
   scrOfY = document.body.scrollTop;
   scrOfX = document.body.scrollLeft;
 } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
   //IE6 standards compliant mode
   scrOfY = document.documentElement.scrollTop;
   scrOfX = document.documentElement.scrollLeft;
 }
 return [ scrOfX, scrOfY ];
}

 

This function, when called, will return the current "scroll" position. Then, set cookies in javascript when the user leaves the page (or something) so when they refresh, they go back to where they were.... You can check the page the browser is leaving to navigate to, see if it matches with the current page, and use that as a conditional for setting/reading cookies.

Link to comment
Share on other sites

if you look in the URL

http://www.phpfreaks.com/forums/index.php/topic,214242.html#msg978053

 

this part right here ....#msg978053 tells the page how far to go down

 

What is it? Well, if you know CSS you don't need that answer, but that id of one particular area.

You'll have to use id's to do what you're looking for.

 

Yeah, except for the fact that there's no hash on the URL when clicking the topic, scrolling to a point, then refreshing.  If you provide someone with a link to a certain post, then yeah, you're right, but that's not the case here.

Link to comment
Share on other sites

What is it? Well, if you know CSS you don't need that answer, but that's the id of one particular area on the page.

You'll have to use id's to do what you're looking for.

 

Actually CSS comes to no help in this. Instead of the ID attribute, one can use the "name" attribute, that shares the same name space as the former. Even though, those are html attributes. The CSS selectors (id, class, etc) are a different matter.

Link to comment
Share on other sites

if you look in the URL

http://www.phpfreaks.com/forums/index.php/topic,214242.html#msg978053

 

this part right here ....#msg978053 tells the page how far to go down

 

What is it? Well, if you know CSS you don't need that answer, but that id of one particular area.

You'll have to use id's to do what you're looking for.

 

Yeah, except for the fact that there's no hash on the URL when clicking the topic, scrolling to a point, then refreshing.  If you provide someone with a link to a certain post, then yeah, you're right, but that's not the case here.

 

Yes, that would work... But if you just go to this topic, scroll down, then refresh, it does bring you back to that same point, regardless of whether or not you clicked on an anchor tag o_o

Link to comment
Share on other sites

if you look in the URL

http://www.phpfreaks.com/forums/index.php/topic,214242.html#msg978053

 

this part right here ....#msg978053 tells the page how far to go down

 

What is it? Well, if you know CSS you don't need that answer, but that id of one particular area.

You'll have to use id's to do what you're looking for.

 

Yeah, except for the fact that there's no hash on the URL when clicking the topic, scrolling to a point, then refreshing.  If you provide someone with a link to a certain post, then yeah, you're right, but that's not the case here.

 

Yes, that would work... But if you just go to this topic, scroll down, then refresh, it does bring you back to that same point, regardless of whether or not you clicked on an anchor tag o_o

 

Yeah, I know, that's what I said.

Link to comment
Share on other sites

I believe that this has nothing to do with CSS, or JavaScript.

 

 

Here are my examples (go to both sites)

Example 1 (go here):

http://www.google.com/search?hl=en&q=free&btnG=Google+Search&aq=f&oq=

Scroll down the page, then refresh it.

 

Example 2 (go here):

http://phpsnips.com/snippet.php?id=16

Scroll down the page, then refresh it.

 

 

As you can see, in example one the browser remembered how far down the page you were when you refreshed the page, where as in example 2, it started you back at the top of the page after you refreshed the page.

 

Why does this happen on all my sites?

Link to comment
Share on other sites

I believe that this has nothing to do with CSS, or JavaScript.

 

 

Here are my examples (go to both sites)

Example 1 (go here):

http://www.google.com/search?hl=en&q=free&btnG=Google+Search&aq=f&oq=

Scroll down the page, then refresh it.

 

Example 2 (go here):

http://phpsnips.com/snippet.php?id=16

Scroll down the page, then refresh it.

 

 

As you can see, in example one the browser remembered how far down the page you were when you refreshed the page, where as in example 2, it started you back at the top of the page after you refreshed the page.

 

Why does this happen on all my sites?

 

Javascript is almost literally the only way to do it buddy... All those fancy web applications made use SOME javascript. Google Suggest uses javascript to communicate with its servers to bring results to your browser as you type... Flash uses actionscript (which is quite similar to javascript). Javascript is the kind of code that works ONLY client side (but it can communicate with other pages though). This is why you need javascript, because scrolling/scroll position is a client-side action.

Link to comment
Share on other sites

These forums are a dynamic PHP page, yet it remembers where you were because of javascript. Not all .html pages are static. They could still parse PHP (if set in .htaccess to do so) and quite simply, this is never true. Javascript is the only tested-tried-true method of actually doing this.

Link to comment
Share on other sites

Could you show me the JavaScript code that does this?

 

function getScrollXY() {
  var scrOfX = 0, scrOfY = 0;
  if( typeof( window.pageYOffset ) == 'number' ) {
    //Netscape compliant
    scrOfY = window.pageYOffset;
    scrOfX = window.pageXOffset;
  } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {
    //DOM compliant
    scrOfY = document.body.scrollTop;
    scrOfX = document.body.scrollLeft;
  } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {
    //IE6 standards compliant mode
    scrOfY = document.documentElement.scrollTop;
    scrOfX = document.documentElement.scrollLeft;
  }
  return [ scrOfX, scrOfY ];
}

 

This is part of what I found in the forum's files. It's integrated into the forum. But I'm sure that on page load, it will recall the scroll positions and automatically scroll you down to that point.

 

**Just checked the processes run on page load, there are some functions being called to this extent, so my suspicion is confirmed.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.