Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to know if someone has bookmarked your website? [closed]

I want to make stats for my website. One thing I want to do is to know how many people bookmark my website. What's the best way to do that without a survey?

like image 378
Bigballs Avatar asked Sep 08 '09 12:09

Bigballs


2 Answers

There is no way to tell.

A proportion of people who arrive at the page without sending referer information will have bookmarked it — but they might also have come from a link in an email, typed the URL, dragged it from their history, turned referers off, etc, etc,etc.

like image 116
Quentin Avatar answered Oct 18 '22 22:10

Quentin


Your best bet is to have a Javascript "Bookmark us" link that bookmarks the site and makes an AJAX call to a backend script to store info about a new bookmark in your db. This won't catch people who bookmark your site directly using their browser, but it will give you some idea about the stickiness of your site.

like image 28
code_burgar Avatar answered Oct 18 '22 20:10

code_burgar