admin管理员组

文章数量:1345090

I have a site logo that I want to animate (fade in) when a user first arrives into my domain. But, I do not want to animate this if the user arrives from another page in my domain.

I have the animation routine sorted (jquery) but I don't know how to detect when a user is landing on my site from elsewhere (link, or through typing in the URL).

I guess there might be an elegant javascript solution for this? Could anyone let me know what it might be...

I have a site logo that I want to animate (fade in) when a user first arrives into my domain. But, I do not want to animate this if the user arrives from another page in my domain.

I have the animation routine sorted (jquery) but I don't know how to detect when a user is landing on my site from elsewhere (link, or through typing in the URL).

I guess there might be an elegant javascript solution for this? Could anyone let me know what it might be...

Share asked Aug 5, 2014 at 10:38 ploddingOnploddingOn 1331 gold badge4 silver badges12 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

Javascript has function document.referrer.split('/'); using this you should be able to find if they came from a page on your domain or not.

Hope this helps.

Example:

if(document.referrer.split('/')[2]!=location.hostname){
    //User came from other domain or from direct
}else{
    //User came from another page on your site
}

本文标签: htmlJavascript to detect domain of previous pageStack Overflow