最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

html - Javascript to detect domain of previous page - Stack Overflow

programmeradmin1浏览0评论

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
}
发布评论

评论列表(0)

  1. 暂无评论